$manlookup

PR_GET_TID_ADDRESS

(2const)

get the clear_child_tid address

System callsmanpages-dev 6.9.1-1
#include <linux/prctl.h> /* Definition of PR_* constants */ #include <sys/prctl.h> int prctl(PR_GET_TID_ADDRESS, int **addrp);

LIBRARY

Standard C library (libc, -lc)

DESCRIPTION

Return the clear_child_tid address set by set_tid_address(2) and the clone(2) CLONE_CHILD_CLEARTID flag, in the location pointed to by addrp.

This feature is available only if the kernel is built with the CONFIG_CHECKPOINT_RESTORE option enabled.

RETURN VALUE

On success, 0 is returned. On error, -1 is returned, and errno is set to indicate the error.

ERRORS

addrp is an invalid address.

STANDARDS

Linux.

HISTORY

Linux 3.5.

CAVEATS

Note that since the prctl() system call does not have a compat implementation for the AMD64 x32 and MIPS n32 ABIs, and the kernel writes out a pointer using the kernel's pointer size, this operation expects a user-space buffer of 8 (not 4) bytes on these ABIs.

See also