source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/thread/lock_ptc.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 252 bytes
Line 
1#include <pthread.h>
2
3static pthread_rwlock_t lock = PTHREAD_RWLOCK_INITIALIZER;
4
5void __inhibit_ptc()
6{
7 pthread_rwlock_wrlock(&lock);
8}
9
10void __acquire_ptc()
11{
12 pthread_rwlock_rdlock(&lock);
13}
14
15void __release_ptc()
16{
17 pthread_rwlock_unlock(&lock);
18}
Note: See TracBrowser for help on using the repository browser.