• Show log

    Commit

  • Hash : cea994b9
    Author : Sebastian Bauer
    Date : 2013-01-10T12:39:17

    Don't call pthread_exit() in the callback.
    
    Compilers that are not aware that pthread_exit() does not return
    issue a warning when compiling the present code. This change
    exchanges the call to pthread_exit() with a simple return
    statement. According to the pthread specification this is
    equivalent.