最終更新:2012-12-29 (土) 18:26:36 (4128d)  

kernel/semaphore.c
Top / kernel / semaphore.c

ヘッダ

関数

  • sema_init?
  • down?(struct semaphore? *sem) - acquire the semaphore
  • down_interruptible(struct semaphore? *sem) - acquire the semaphore unless interrupted
  • down_killable?(struct semaphore? *sem) - acquire the semaphore unless killed
  • down_trylock?(struct semaphore? *sem) - try to acquire the semaphore, without waiting
  • down_timeout?(struct semaphore? *sem, long jiffies) - acquire the semaphore within a specified time
  • up?(struct semaphore? *sem) - release the semaphore

関連