/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2009 Oracle. All rights reserved. * */ using System; using System.Collections.Generic; using System.Text; namespace BerkeleyDB { /// /// A class representing a unique identifier for a thread of control in a /// Berkeley DB application. /// public class DbThreadID { /// /// The Process ID of the thread of control /// public int processID; /// /// The Thread ID of the thread of control /// public uint threadID; /// /// Instantiate a new DbThreadID object /// /// The Process ID of the thread of control /// The Thread ID of the thread of control public DbThreadID(int pid, uint tid) { processID = pid; threadID = tid; } } }