cvs commit: src/lib/libthr/thread thr_exit.c

Daniel Eischen deischen at freebsd.org
Fri Oct 8 09:21:54 PDT 2004


On Fri, 8 Oct 2004, Mike Makonnen wrote:

> mtm         2004-10-08 14:48:02 UTC
>
>   FreeBSD src repository
>
>   Modified files:
>     lib/libthr/thread    thr_exit.c
>   Log:
>   Remove a reference to a non-existent syscall: _thr_exit(). The
>   actual name is thr_exit(). How this ever worked is beyond me.

'Cause syscalls get weak references:

	__sys_foo() actual syscall
	_sys_foo() weak reference to __sys_foo()
	sys_foo() weak reference to __sys_foo()

:-)

-- 
Dan Eischen



More information about the cvs-all mailing list