-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2001-01-11 Ulrich Drepper <drepper@redhat.com> * stdlib/Makefile (routines): Add cxa_on_exit. * stdlib/Versions [libc] (GLIBC_2.2.1): Add __cxa_on_exit. * stdlib/cxa_on_exit.c: New file. * include/stdlib.h: Add prototype for __cxa_on_exit. * stdlib/exit.c: Handle ef_cxa2. * stdlib/exit.h (enum): Add ef_cxa2. (struct exit_function): Add cxa2. * Versions.def [ld]: Add GLIBC_2.2.1.
- Loading branch information
Ulrich Drepper
committed
Jan 11, 2001
1 parent
beb5387
commit 3bbddbe
Showing
11 changed files
with
131 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,6 +86,7 @@ ld { | |
GLIBC_2.1 | ||
GLIBC_2.1.1 | ||
GLIBC_2.2 | ||
GLIBC_2.2.1 | ||
} | ||
libthread_db { | ||
GLIBC_2.1.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <sys/types.h> | ||
#include <sys/wait.h> | ||
#include <pthread.h> | ||
#include <unistd.h> | ||
|
||
static void * | ||
worker (void *dummy) | ||
{ | ||
exit (26); | ||
} | ||
|
||
#define TEST_FUNCTION do_test () | ||
#define TIMEOUT 10 | ||
static int | ||
do_test (void) | ||
{ | ||
pthread_t th; | ||
pid_t pid; | ||
int status; | ||
|
||
switch ((pid = fork ())) | ||
{ | ||
case -1: | ||
puts ("Could not fork"); | ||
exit (1); | ||
case 0: | ||
if (pthread_create(&th, NULL, worker, NULL) != 0) | ||
{ | ||
puts ("Failed to start thread"); | ||
exit (1); | ||
} | ||
for (;;); | ||
exit (1); | ||
default: | ||
break; | ||
} | ||
|
||
if (waitpid (pid, &status, 0) != pid) | ||
{ | ||
puts ("waitpid failed"); | ||
exit (1); | ||
} | ||
|
||
if (!WIFEXITED (status) || WEXITSTATUS (status) != 26) | ||
{ | ||
printf ("Wrong exit code %d\n", status); | ||
exit (1); | ||
} | ||
|
||
puts ("All OK"); | ||
return 0; | ||
} | ||
|
||
#include "../../test-skeleton.c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* Copyright (C) 2001 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
The GNU C Library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Library General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
The GNU C Library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Library General Public License for more details. | ||
You should have received a copy of the GNU Library General Public | ||
License along with the GNU C Library; see the file COPYING.LIB. If not, | ||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
Boston, MA 02111-1307, USA. */ | ||
|
||
#include <stdlib.h> | ||
#include "exit.h" | ||
|
||
/* Register a function to be called by exit or when a shared library | ||
is unloaded. This function is only called from code generated by | ||
the C++ compiler. */ | ||
int | ||
__cxa_on_exit (void (*func) (int, void *), void *arg, void *d) | ||
{ | ||
struct exit_function *new = __new_exitfn (); | ||
|
||
if (new == NULL) | ||
return -1; | ||
|
||
new->flavor = ef_cxa2; | ||
new->func.cxa2.fn = func; | ||
new->func.cxa2.arg = arg; | ||
new->func.cxa2.dso_handle = d; | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters