#define THREAD_TYPE(thread) \
typedef struct \
{ \
pthread_t pthread; \
int err; \
}t;
上面的宏的目的是什么?