logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

thr_exit — terminate current thread

Description

Thisfunctionisintendedforimplementingthreading.Normalapplicationsshouldcallpthread_exit(3) instead. The thr_exit() system call terminates the current kernel-scheduled thread. If the state argument is not NULL, the location pointed to by the argument is updated with an arbitrary non-zero value, and an _umtx_op(2) UMTX_OP_WAKE operation is consequently performed on the location. Attempts to terminate the last thread in the process are silently ignored. Use _exit(2) syscall to terminate the process.

Library

Standard C Library (libc, -lc)

Name

thr_exit — terminate current thread

Return Values

The function does not return a value. A return from the function indicates that the calling thread was the last one in the process.

See Also

_exit(2), thr_kill(2), thr_kill2(2), thr_new(2), thr_self(2), thr_set_name(2), _umtx_op(2), pthread_exit(3)

Standards

The thr_exit() system call is non-standard and is used by 1:1 Threading Library (libthr, -lthr) to implement IEEE Std 1003.1-2001 (“POSIX.1”) pthread(3) functionality. Debian June 1, 2016 THR_EXIT(2)

Synopsis

#include<sys/thr.h>voidthr_exit(long*state);

See Also