| 251 | } |
| 252 | |
| 253 | static void test(void) |
| 254 | { |
| 255 | acl_pthread_t tid; |
| 256 | acl_pthread_attr_t attr; |
| 257 | |
| 258 | pthread_attr_init(&attr); |
| 259 | pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); |
| 260 | acl_pthread_create(&tid, &attr, thread_test, 0); |
| 261 | while (1) { |
| 262 | sleep(1); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | int main(int argc, char *argv[]) |
| 267 | { |
no test coverage detected
searching dependent graphs…