| Previous | 199869 Revisions | Next |
| r30721 Friday 30th May, 2014 at 12:16:03 UTC by Curt Coder |
|---|
| clang compile fix, please submit to mongoose baseline. (nw) |
| [src/lib/web] | mongoose.c |
| r30720 | r30721 | |
|---|---|---|
| 337 | 337 | (void) pthread_attr_init(&attr); |
| 338 | 338 | (void) pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); |
| 339 | 339 | |
| 340 | #ifdef NS_STACK_SIZE | |
| 340 | 341 | #if NS_STACK_SIZE > 1 |
| 341 | 342 | (void) pthread_attr_setstacksize(&attr, NS_STACK_SIZE); |
| 342 | 343 | #endif |
| 344 | #endif | |
| 343 | 345 | |
| 344 | 346 | pthread_create(&thread_id, &attr, f, p); |
| 345 | 347 | pthread_attr_destroy(&attr); |
| Previous | 199869 Revisions | Next |