Searched refs:lock (Results 1 – 17 of 17) sorted by relevance
22 -> Mutex lock SHARE24 -> Mutex lock CONNECT26 -> Mutex lock CONNECT28 -> Mutex lock CONNECT30 -> Mutex lock CONNECT33 -> Mutex lock CONNECT35 -> Mutex lock CONNECT37 -> Mutex lock SHARE39 -> Mutex lock SHARE52 -> Mutex lock SHARE[all …]
92 lock: share [Pigs in space]: 095 lock: cookie [Pigs in space]: 298 lock: cookie [Pigs in space]: 4101 lock: cookie [Pigs in space]: 6104 lock: cookie [Pigs in space]: 8107 lock: cookie [Pigs in space]: 10110 lock: cookie [Pigs in space]: 12112 lock: share [Pigs in space]: 14116 lock: share [Pigs in space]: 16119 lock: cookie [Pigs in space]: 18[all …]
35 # not even give it enough time to write its lock file.
38 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; variable62 pthread_mutex_lock(&lock); in run_thread()65 pthread_mutex_unlock(&lock); in run_thread()73 pthread_mutex_unlock(&lock); in run_thread()82 pthread_mutex_lock(&lock); in run_thread()87 pthread_mutex_unlock(&lock); in run_thread()153 pthread_mutex_lock(&lock); in test()158 pthread_mutex_unlock(&lock); in test()167 pthread_mutex_unlock(&lock); in test()186 pthread_mutex_lock(&lock); in test()[all …]
72 static inline void curl_simple_lock_lock(curl_simple_lock *lock) in curl_simple_lock_lock() argument75 if(!atomic_exchange_explicit(lock, true, memory_order_acquire)) in curl_simple_lock_lock()78 while(atomic_load_explicit(lock, memory_order_relaxed)) { in curl_simple_lock_lock()91 static inline void curl_simple_lock_unlock(curl_simple_lock *lock) in curl_simple_lock_unlock() argument93 atomic_store_explicit(lock, false, memory_order_release); in curl_simple_lock_unlock()
48 pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; variable93 pthread_mutex_lock(&lock); in pull_one_url()97 pthread_mutex_unlock(&lock); in pull_one_url()103 pthread_mutex_lock(&lock); in pull_one_url()105 pthread_mutex_unlock(&lock); in pull_one_url()
5 # Configuration for lock-threads - https://github.com/dessant/lock-threads
19 CURLSHOPT_LOCKFUNC - mutex lock callback34 Set a mutex lock callback for the share object, to allow it to get used by44 The *data* argument tells what kind of data libcurl wants to lock. Make45 sure that the callback uses a different lock for each kind of data.
19 CURLSHOPT_USERDATA - pointer passed to the lock and unlock mutex callbacks
43 sure that the callback uses a different lock for each kind of data.
61 #define msh3_lock_initialize(lock) InitializeCriticalSection(lock) argument62 #define msh3_lock_uninitialize(lock) DeleteCriticalSection(lock) argument63 #define msh3_lock_acquire(lock) EnterCriticalSection(lock) argument64 #define msh3_lock_release(lock) LeaveCriticalSection(lock) argument68 #define msh3_lock_initialize(lock) do { \ argument72 pthread_mutex_init(lock, &attr); \75 #define msh3_lock_uninitialize(lock) pthread_mutex_destroy(lock) argument76 #define msh3_lock_acquire(lock) pthread_mutex_lock(lock) argument77 #define msh3_lock_release(lock) pthread_mutex_unlock(lock) argument
42 --disable-libtool-lock --with-gssapi --disable-ntlm-wb \
52 using this multi-threaded. You set lock and unlock functions with
60 lock during that time and it could cause a deadlock.
51 lock during that time and it could cause a deadlock.
226 the loader lock during that time and it could cause a deadlock.)
202 …while [[ $? == 0 ]]; do for i in 1 2 3; do brew update && brew bundle install --no-lock --file /tm…416 …while [[ $? == 0 ]]; do for i in 1 2 3; do brew update && brew bundle install --no-lock --file /tm…
Completed in 51 milliseconds