1*2fe8fb19SBen Gras.\" $NetBSD: _lwp_exit.2,v 1.5 2008/04/30 13:10:51 martin Exp $ 2*2fe8fb19SBen Gras.\" 3*2fe8fb19SBen Gras.\" Copyright (c) 2003 The NetBSD Foundation, Inc. 4*2fe8fb19SBen Gras.\" All rights reserved. 5*2fe8fb19SBen Gras.\" 6*2fe8fb19SBen Gras.\" This code is derived from software contributed to The NetBSD Foundation 7*2fe8fb19SBen Gras.\" by Jason R. Thorpe of Wasabi Systems, Inc. 8*2fe8fb19SBen Gras.\" 9*2fe8fb19SBen Gras.\" Redistribution and use in source and binary forms, with or without 10*2fe8fb19SBen Gras.\" modification, are permitted provided that the following conditions 11*2fe8fb19SBen Gras.\" are met: 12*2fe8fb19SBen Gras.\" 1. Redistributions of source code must retain the above copyright 13*2fe8fb19SBen Gras.\" notice, this list of conditions and the following disclaimer. 14*2fe8fb19SBen Gras.\" 2. Redistributions in binary form must reproduce the above copyright 15*2fe8fb19SBen Gras.\" notice, this list of conditions and the following disclaimer in the 16*2fe8fb19SBen Gras.\" documentation and/or other materials provided with the distribution. 17*2fe8fb19SBen Gras.\" 18*2fe8fb19SBen Gras.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 19*2fe8fb19SBen Gras.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 20*2fe8fb19SBen Gras.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 21*2fe8fb19SBen Gras.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 22*2fe8fb19SBen Gras.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23*2fe8fb19SBen Gras.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24*2fe8fb19SBen Gras.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25*2fe8fb19SBen Gras.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26*2fe8fb19SBen Gras.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27*2fe8fb19SBen Gras.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28*2fe8fb19SBen Gras.\" POSSIBILITY OF SUCH DAMAGE. 29*2fe8fb19SBen Gras.\" 30*2fe8fb19SBen Gras.Dd January 13, 2003 31*2fe8fb19SBen Gras.Dt _LWP_EXIT 2 32*2fe8fb19SBen Gras.Os 33*2fe8fb19SBen Gras.Sh NAME 34*2fe8fb19SBen Gras.Nm _lwp_exit 35*2fe8fb19SBen Gras.Nd terminate the calling light-weight process 36*2fe8fb19SBen Gras.Sh LIBRARY 37*2fe8fb19SBen Gras.Lb libc 38*2fe8fb19SBen Gras.Sh SYNOPSIS 39*2fe8fb19SBen Gras.In lwp.h 40*2fe8fb19SBen Gras.Ft void 41*2fe8fb19SBen Gras.Fn _lwp_exit void 42*2fe8fb19SBen Gras.Sh DESCRIPTION 43*2fe8fb19SBen Gras.Fn _lwp_exit 44*2fe8fb19SBen Grasterminates the calling LWP. 45*2fe8fb19SBen GrasIf it is the last LWP in the process, the process exits with a status of 0. 46*2fe8fb19SBen GrasIf the LWP was not created in a detached state, then the system will not 47*2fe8fb19SBen Grasreclaim its LWP ID until its status is reported to another LWP in the process 48*2fe8fb19SBen Grasvia 49*2fe8fb19SBen Gras.Xr _lwp_wait 2 . 50*2fe8fb19SBen Gras.Sh RETURN VALUES 51*2fe8fb19SBen Gras.Fn _lwp_exit 52*2fe8fb19SBen Grascan never return. 53*2fe8fb19SBen Gras.Sh SEE ALSO 54*2fe8fb19SBen Gras.Xr _exit 2 , 55*2fe8fb19SBen Gras.Xr _lwp_create 2 , 56*2fe8fb19SBen Gras.Xr _lwp_wait 2 57*2fe8fb19SBen Gras.Sh HISTORY 58*2fe8fb19SBen GrasThe 59*2fe8fb19SBen Gras.Fn _lwp_exit 60*2fe8fb19SBen Grassystem call first appeared in 61*2fe8fb19SBen Gras.Nx 2.0 . 62