Searched refs:MAXTHREADNAMESIZE (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dbsdtask_info.h54 #define MAXTHREADNAMESIZE 64 macro
67 char pth_name[MAXTHREADNAMESIZE]; /* thread name, if any */
H A Dproc_info.h152 #define MAXTHREADNAMESIZE 64 macro
165 char pth_name[MAXTHREADNAMESIZE]; /* thread name, if any */
695 #define PROC_SELFSET_THREADNAME_SIZE (MAXTHREADNAMESIZE -1)
H A Duser.h107 #define MAXTHREADNAMESIZE 64 macro
/darwin-on-arm/xnu/bsd/kern/
H A Dproc_info.c696 bcopy(ut->pth_name,buffer,MAXTHREADNAMESIZE);
1756 /* PROC_SELFSET_THREADNAME_SIZE = (MAXTHREADNAMESIZE -1) */
1763 ut->pth_name = (char*)kalloc(MAXTHREADNAMESIZE );
1767 bzero(ut->pth_name, MAXTHREADNAMESIZE);
H A Dkern_fork.c1555 kfree(uth->pth_name, MAXTHREADNAMESIZE);
H A Dkern_sysctl.c685 /* if we have no thread name yet tell'em we want MAXTHREADNAMESIZE - 1 */
686 size_t currlen = MAXTHREADNAMESIZE - 1;
708 if(newlen > (MAXTHREADNAMESIZE - 1))
712 ut->pth_name = (char*)kalloc( MAXTHREADNAMESIZE );
716 bzero(ut->pth_name, MAXTHREADNAMESIZE);

Completed in 36 milliseconds