Home  /  Autodocs  /  dos.library

NAME

AssignLock
Creates an assignment to a locked object (V36)

SYNOPSIS

success = AssignLock(name,lock)
D0 D1 D2

BOOL AssignLock(STRPTR,BPTR)

FUNCTION

Sets up an assign of a name to a given Lock. Passing NULL for a Lock cancels any outstanding assign to that name. If an assign entry of that name is already on the list, this function replaces that entry. If an entry is on the list that conflicts with the new assign, then a failure code is returned.

NOTE:
you should not use the Lock in any way after making this call

successfully. It becomes the assign, and will be unlocked by the system when the assign is removed. If you need to keep the Lock, pass a Lock from DupLock() to AssignLock().

INPUTS

name
Name of device to assign Lock to (without trailing ':')

lock
Lock associated with the assigned name

RESULT

success
Success/failure indicator. On failure, the Lock is not unlocked.

NOTES

Assign names may not be longer than 30 characters.

SEE ALSO

Lock(), AssignAdd(), AssignPath(), AssignLate(), DupLock(), RemAssignList()