/* locking.h - modes for locking() * $Version: 1.11 $ * Copyright (c) 1988-91 Intel Corporation, ALL RIGHTS RESERVED. */ #ifndef _lockingh #define _lockingh /*lint -library */ #define LK_UNLCK 0 #define LK_LOCK 1 #define LK_NBLCK 2 #define LK_RLCK 3 #define LK_NBRLCK 4 #endif /* _lockingh */