SDL_CreateMutex.3
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. .TH "SDL_CreateMutex" "3" "Tue 11 Sep 2001, 23:00" "SDL" "SDL API Reference" 
  2. .SH "NAME"
  3. SDL_CreateMutex- Create a mutex
  4. .SH "SYNOPSIS"
  5. .PP
  6. fB#include "SDL&.h"
  7. #include "SDL_thread&.h"
  8. .sp
  9. fBSDL_mutex *fBSDL_CreateMutexfPfR(fBvoidfR);
  10. .SH "DESCRIPTION"
  11. .PP
  12. Create a new, unlocked mutex&.
  13. .SH "EXAMPLES"
  14. .PP
  15. .nf
  16. f(CWSDL_mutex *mut;
  17. mut=SDL_CreateMutex();
  18. &.
  19. &.
  20. if(SDL_mutexP(mut)==-1){
  21.   fprintf(stderr, "Couldn&'t lock mutex
  22. ");
  23.   exit(-1);
  24. }
  25. &.
  26. /* Do stuff while mutex is locked */
  27. &.
  28. &.
  29. if(SDL_mutexV(mut)==-1){
  30.   fprintf(stderr, "Couldn&'t unlock mutex
  31. ");
  32.   exit(-1);
  33. }
  34. SDL_DestroyMutex(mut);
  35. fR
  36. .fi
  37. .PP
  38. .SH "SEE ALSO"
  39. .PP
  40. fIfBSDL_mutexPfPfR, fIfBSDL_mutexVfPfR, fIfBSDL_DestroyMutexfPfR
  41. ..." created by instant / docbook-to-man, Tue 11 Sep 2001, 23:00