Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Processes
Chapter 2 - Process Manager / Process Manager Reference
Data Structures


Process Serial Number

The Process Manager uses process serial numbers to identify open processes. A process serial number is a 64-bit quantity whose structure is defined by the ProcessSerialNumber data type.

IMPORTANT
The meaning of the bits in a process serial number is internal to the Process Manager. You should not attempt to interpret the value of the process serial number. If you need to compare two process serial numbers, call the SameProcess function. ·
TYPE ProcessSerialNumber   = 
   RECORD
      highLongOfPSN:    LongInt;    {high-order 32 bits of psn}
      lowLongOfPSN:     LongInt;    {low-order 32 bits of psn}
   END;
Field Description
highLongOfPSN
The high-order long integer of the process serial number.
lowLongOfPSN
The low-order long integer of the process serial number.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
17 JUN 1996