Unix and Linux Discussions Tagged with simple |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
4,374 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,146 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
6,657 |
Shell Programming and Scripting |
|
|
|
4 |
2,368 |
Shell Programming and Scripting |
|
|
|
2 |
16,403 |
OS X (Apple) |
|
|
|
6 |
2,300 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
15,310 |
Web Development |
|
|
|
9 |
3,057 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,347 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,047 |
Shell Programming and Scripting |
|
|
|
1 |
2,093 |
Shell Programming and Scripting |
|
|
|
24 |
6,449 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
10,856 |
Shell Programming and Scripting |
|
|
|
7 |
3,093 |
Shell Programming and Scripting |
|
|
|
1 |
311,505 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
31,254 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,244 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,104 |
Software Releases - RSS News |
|
|
|
1 |
6,466 |
Shell Programming and Scripting |
|
|
|
0 |
1,388 |
Software Releases - RSS News |
|
|
|
0 |
3,353 |
Software Releases - RSS News |
|
|
|
0 |
1,175 |
Software Releases - RSS News |
|
|
|
8 |
4,670 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,410 |
Software Releases - RSS News |
|
|
|
4 |
36,608 |
Shell Programming and Scripting |
|
|
|
3 |
2,855 |
Shell Programming and Scripting |
|
|
|
0 |
1,155 |
Software Releases - RSS News |
|
|
|
2 |
2,409 |
Shell Programming and Scripting |
|
|
|
0 |
1,301 |
Software Releases - RSS News |
|
|
|
0 |
3,588 |
Complex Event Processing RSS News |
|
|
|
4 |
3,227 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,405 |
Software Releases - RSS News |
|
|
|
0 |
1,726 |
UNIX and Linux RSS News |
|
|
|
0 |
1,397 |
Software Releases - RSS News |
|
|
|
0 |
1,326 |
Software Releases - RSS News |
|
|
|
0 |
1,830 |
UNIX and Linux RSS News |
|
|
|
0 |
1,406 |
Software Releases - RSS News |
|
|
|
4 |
2,025 |
Shell Programming and Scripting |
|
|
|
5 |
3,874 |
Shell Programming and Scripting |
|
|
|
8 |
4,786 |
Shell Programming and Scripting |
simple_lock_try(9r) simple_lock_try(9r)
NAME
simple_lock_try - General: Tries to assert a simple lock
SYNOPSIS
#include <kern/lock.h>
boolean_t simple_lock_try(
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_try routine tries to assert a lock with read and write access for the resource associated with the specified simple lock.
The main difference between this routine and simple_lock is that simple_lock_try returns immediately if the resource is already locked,
while simple_lock spins until the lock has been obtained. Thus, call simple_lock_try when you need a simple lock but the code cannot spin
until the lock is obtained.
To release a simple lock successfully asserted by simple_lock_try, call the simple_unlock routine.
RETURN VALUES
The simple_lock_try routine returns one of the following values: The simple_lock_try routine successfully asserted the simple lock. The
simple_lock_try routine failed to assert the simple lock.
FILES
SEE ALSO
Routines: decl_simple_lock_data(9r), simple_lock(9r), simple_lock_init(9r), simple_lock_terminate(9r), simple_unlock(9r)
Data Structures: slock(9s)
simple_lock_try(9r)