Important: The information in this document is obsolete and should not be used for new development.
PBStatus
You can use thePBStatusfunction to obtain status information from a device driver.
pascal OSErr PBStatus(ParmBlkPtr paramBlock, Boolean async);
paramBlock- A pointer to a
CntrlParamstructure of the Device Manager parameter block.
async- A Boolean value that indicates whether the request is asynchronous.
--> ioCompletion ProcPtr A pointer to a completion routine. <-- ioResult OSErr The device driver's result code. --> ioVRefNum short The drive number. --> ioCRefNum short The driver reference number. --> csCode short The type of status call. <-- csParam short[11] The status information. DESCRIPTION
ThePBStatusfunction returns information about the device driver specified by theioCRefNumfield. The value you pass in thecsCodefield and the type of information received in thecsParamfield are defined by the driver you are calling. For more information, see the appropriate chapters for the standard device drivers in this book and other books in the Inside Macintosh series.
- Note
- The Device Manager interprets a
csCodevalue of 1 as a special case. When the Device Manager receives a status request with acsCodevalue of 1, it returns a handle to the driver's device control entry.
This type of status request is not passed to the device driver.
SPECIAL CONSIDERATIONS
Do not call thePBStatusfunction synchronously at interrupt time. Synchronous requests at interrupt time may block other pending I/O requests and cause the Device Manager to loop indefinitely while it waits for the device driver to complete the interrupted requests.ASSEMBLY-LANGUAGE INFORMATION
The trap macro for thePBStatusfunction is_Status(0xA005). Set bit 10 of the trap word to execute this function asynchronously. Set bit 9 to execute it immediately.You must set up register A0 with the address of the parameter block. When
_Statusreturns, register D0 contains the result code. Register D0 is the only register affected by this function.
Registers on entry A0 Address of the parameter block 
Registers on exit D0 Result code RESULT CODES
noErr 0 No error statusErr -18 Driver does not respond to this status request badUnitErr -21 Driver reference number does not match unit table unitEmptyErr -22 Driver reference number specifies a nilhandle in unit tableabortErr -27 Request aborted by KillIOnotOpenErr -28 Driver not open SEE ALSO
For information about the high-level function for monitoring device drivers, see the description of theStatusfunction on page 1-77. For an example of how to request status information from a device driver using thePBStatusfunction, see Listing 1-5 on page 1-23.
 
  
  
 