Advertisement
Guest User

omni_mutex::omni_mutex

a guest
Sep 16th, 2011
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 1817372 004bfb98 <_ZN10omni_mutexC1Ev>:
  2. 1817373 // Mutex
  3. 1817374 //
  4. 1817375 ///////////////////////////////////////////////////////////////////////////
  5. 1817376
  6. 1817377
  7. 1817378 omni_mutex::omni_mutex(void)
  8. 1817379   4bfb98:   55                      push   %ebp
  9. 1817380   4bfb99:   89 e5                   mov    %esp,%ebp
  10. 1817381   4bfb9b:   53                      push   %ebx
  11. 1817382   4bfb9c:   83 ec 0c                sub    $0xc,%esp
  12. 1817383 {
  13. 1817384 #if (PthreadDraftVersion == 4)
  14. 1817385     THROW_ERRORS(pthread_mutex_init(&posix_mutex, pthread_mutexattr_default));
  15. 1817386 #else
  16. 1817387     THROW_ERRORS(pthread_mutex_init(&posix_mutex, 0));
  17. 1817388   4bfb9f:   6a 00                   push   $0x0
  18. 1817389   4bfba1:   ff 75 08                pushl  0x8(%ebp)
  19. 1817390   4bfba4:   e8 a7 21 01 00          call   4d1d50 <pthread_mutex_init>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement