14/07/2013, 14:36
|
| | Fecha de Ingreso: julio-2012
Mensajes: 375
Antigüedad: 12 años, 4 meses Puntos: 28 | |
Respuesta: Pthread tipo c -> c++ Sustituye return 0; por pthread_exit: http://pubs.opengroup.org/onlinepubs...read_exit.html
A su vez, comprueba los errores de detach:
Código C:
Ver originalint Buffer = pthread_detach(tid); if (Buffer == EINVAL) // Imprimir "Not joinable thread" if (Buffer == ESRCH) // ID no válida
http://pubs.opengroup.org/onlinepubs...ad_detach.html |