Deleted Added
full compact
propagate_s.pl (59667) propagate_s.pl (103412)
1#!/usr/bin/perl -w
2#
3# Copyright (C) 2000 Jason Evans <jasone@freebsd.org>.
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

--- 15 unchanged lines hidden (view full) ---

24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29#
30###########################################################################
31#
1#!/usr/bin/perl -w
2#
3# Copyright (C) 2000 Jason Evans <jasone@freebsd.org>.
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

--- 15 unchanged lines hidden (view full) ---

24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29#
30###########################################################################
31#
32# Verify that no cancellation points are propagated inside of libc_r.
32# Verify that no cancellation points are propagated inside of libpthread.
33#
33#
34# $FreeBSD: head/lib/libkse/test/propagate_s.pl 59667 2000-04-26 23:25:58Z jasone $
34# $FreeBSD: head/lib/libkse/test/propagate_s.pl 103412 2002-09-16 19:29:34Z mini $
35#
36
37@CPOINTS = ("aio_suspend", "close", "creat", "fcntl", "fsync", "mq_receive",
38 "mq_send", "msync", "nanosleep", "open", "pause",
39 "pthread_cond_timedwait", "pthread_cond_wait", "pthread_join",
40 "pthread_testcancel", "read", "sem_wait", "sigsuspend",
41 "sigtimedwait", "sigwait", "sigwaitinfo", "sleep", "system",
42 "tcdrain", "wait", "waitpid", "write");

--- 32 unchanged lines hidden ---
35#
36
37@CPOINTS = ("aio_suspend", "close", "creat", "fcntl", "fsync", "mq_receive",
38 "mq_send", "msync", "nanosleep", "open", "pause",
39 "pthread_cond_timedwait", "pthread_cond_wait", "pthread_join",
40 "pthread_testcancel", "read", "sem_wait", "sigsuspend",
41 "sigtimedwait", "sigwait", "sigwaitinfo", "sleep", "system",
42 "tcdrain", "wait", "waitpid", "write");

--- 32 unchanged lines hidden ---