Unix and Linux Discussions Tagged with simple |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
1,927 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,607 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,596 |
Shell Programming and Scripting |
|
|
|
4 |
918 |
Shell Programming and Scripting |
|
|
|
2 |
8,971 |
OS X (Apple) |
|
|
|
6 |
630 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,690 |
Web Development |
|
|
|
9 |
673 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
361 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
653 |
Shell Programming and Scripting |
|
|
|
1 |
739 |
Shell Programming and Scripting |
|
|
|
24 |
2,438 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
6,146 |
Shell Programming and Scripting |
|
|
|
7 |
2,214 |
Shell Programming and Scripting |
|
|
|
1 |
211,245 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
23,668 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,545 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
729 |
Software Releases - RSS News |
|
|
|
1 |
5,203 |
Shell Programming and Scripting |
|
|
|
0 |
694 |
Software Releases - RSS News |
|
|
|
0 |
2,774 |
Software Releases - RSS News |
|
|
|
0 |
621 |
Software Releases - RSS News |
|
|
|
8 |
3,160 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
817 |
Software Releases - RSS News |
|
|
|
4 |
28,228 |
Shell Programming and Scripting |
|
|
|
3 |
1,806 |
Shell Programming and Scripting |
|
|
|
0 |
632 |
Software Releases - RSS News |
|
|
|
2 |
1,897 |
Shell Programming and Scripting |
|
|
|
0 |
711 |
Software Releases - RSS News |
|
|
|
0 |
2,820 |
Complex Event Processing RSS News |
|
|
|
4 |
2,055 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
605 |
Software Releases - RSS News |
|
|
|
0 |
1,260 |
UNIX and Linux RSS News |
|
|
|
0 |
715 |
Software Releases - RSS News |
|
|
|
0 |
585 |
Software Releases - RSS News |
|
|
|
0 |
1,300 |
UNIX and Linux RSS News |
|
|
|
0 |
647 |
Software Releases - RSS News |
|
|
|
4 |
1,148 |
Shell Programming and Scripting |
|
|
|
5 |
2,637 |
Shell Programming and Scripting |
|
|
|
8 |
3,601 |
Shell Programming and Scripting |
simple_lock_init(9r) simple_lock_init(9r)
NAME
simple_lock_init - General: Initializes a simple lock structure
SYNOPSIS
#include <kern/lock.h>
void simple_lock_init(
simple_lock_t slock_ptr );
ARGUMENTS
Specifies a pointer to a simple lock structure. You can declare this simple lock structure by using the decl_simple_lock_data routine.
DESCRIPTION
The simple_lock_init routine initializes the simple lock structure that you previously declared with the decl_simple_lock_data routine. You
need to initialize the simple lock structure only once. After you initialize the simple lock structure, you can call simple_lock to assert
exclusive access on the associated resource.
RETURN VALUES
None
FILES
SEE ALSO
Routines: decl_simple_lock_data(9r), simple_lock(9r), simple_lock_terminate(9r), simple_lock_try(9r), simple_unlock(9r)
Data Structures: slock(9s)
simple_lock_init(9r)