Get the current status of the current thread in the process associated with the file descriptor. The argument is a pointer to a procfs_status structure (see debug_thread_t in <sys/debug.h>) that's filled in with the required information on return. For example:
procfs_status my_status;
devctl( fd, DCMD_PROC_STATUS, &my_status, sizeof(my_status),
NULL);
For more information about the contents of this structure, see Thread information.