| 657 | } |
| 658 | |
| 659 | static int pthread_attr_init(pthread_attr_t *attr) |
| 660 | { |
| 661 | attr->p_state = PTHREAD_DEFAULT_ATTR; |
| 662 | attr->stack = NULL; |
| 663 | attr->s_size = 0; |
| 664 | return 0; |
| 665 | } |
| 666 | |
| 667 | static int pthread_attr_destroy(pthread_attr_t *attr) |
| 668 | { |
no outgoing calls
no test coverage detected