Unix and Linux Discussions Tagged with simple |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
2,419 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,052 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,561 |
Shell Programming and Scripting |
|
|
|
4 |
1,296 |
Shell Programming and Scripting |
|
|
|
2 |
12,171 |
OS X (Apple) |
|
|
|
6 |
959 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
6,568 |
Web Development |
|
|
|
9 |
1,240 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
650 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,136 |
Shell Programming and Scripting |
|
|
|
1 |
1,113 |
Shell Programming and Scripting |
|
|
|
24 |
3,365 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
8,309 |
Shell Programming and Scripting |
|
|
|
7 |
2,582 |
Shell Programming and Scripting |
|
|
|
1 |
243,459 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
27,094 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,766 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,185 |
Software Releases - RSS News |
|
|
|
1 |
5,547 |
Shell Programming and Scripting |
|
|
|
0 |
778 |
Software Releases - RSS News |
|
|
|
0 |
2,857 |
Software Releases - RSS News |
|
|
|
0 |
705 |
Software Releases - RSS News |
|
|
|
8 |
3,610 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
898 |
Software Releases - RSS News |
|
|
|
4 |
29,461 |
Shell Programming and Scripting |
|
|
|
3 |
2,145 |
Shell Programming and Scripting |
|
|
|
0 |
717 |
Software Releases - RSS News |
|
|
|
2 |
2,124 |
Shell Programming and Scripting |
|
|
|
0 |
798 |
Software Releases - RSS News |
|
|
|
0 |
3,035 |
Complex Event Processing RSS News |
|
|
|
4 |
2,382 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
681 |
Software Releases - RSS News |
|
|
|
0 |
1,383 |
UNIX and Linux RSS News |
|
|
|
0 |
797 |
Software Releases - RSS News |
|
|
|
0 |
665 |
Software Releases - RSS News |
|
|
|
0 |
1,415 |
UNIX and Linux RSS News |
|
|
|
0 |
734 |
Software Releases - RSS News |
|
|
|
4 |
1,342 |
Shell Programming and Scripting |
|
|
|
5 |
3,055 |
Shell Programming and Scripting |
|
|
|
8 |
3,976 |
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)