msgport = DeviceProc( name )
D0 D1
struct MsgPort *DeviceProc(STRPTR)
DeviceProc() returns the identifier of the Process which handles the device associated with the specified name. This identifier is a pointer to a MsgPort.
If no Process handler can be found, then the result is NULL. If the name refers to an assign, then a directory
Lock is returned by
IoErr(). This
Lock should not be
UnLock()ed or
Examine()ed (if you wish to do so,
DupLock() it first).
In V36, if you try to DeviceProc() something relative to an assign made with
AssignPath(), it will fail. This is because there's no way to know when to unlock the Lock. If you're writing code for V36 or later, it is highly advised you use
GetDeviceProc() instead, or make your code conditional on V36 to use
GetDeviceProc()/
FreeDeviceProc().