xref: /freebsd/contrib/netbsd-tests/lib/libpthread/t_detach.c (revision 1a36faad54665288ed4eb839d2a4699ae2ead45e)
1*3b0a9131SEnji Cooper /* $NetBSD: t_detach.c,v 1.2 2017/01/16 16:29:54 christos Exp $ */
257718be8SEnji Cooper 
357718be8SEnji Cooper /*-
457718be8SEnji Cooper  * Copyright (c) 2011 The NetBSD Foundation, Inc.
557718be8SEnji Cooper  * All rights reserved.
657718be8SEnji Cooper  *
757718be8SEnji Cooper  * This code is derived from software contributed to The NetBSD Foundation
857718be8SEnji Cooper  * by Jukka Ruohonen.
957718be8SEnji Cooper  *
1057718be8SEnji Cooper  * Redistribution and use in source and binary forms, with or without
1157718be8SEnji Cooper  * modification, are permitted provided that the following conditions
1257718be8SEnji Cooper  * are met:
1357718be8SEnji Cooper  * 1. Redistributions of source code must retain the above copyright
1457718be8SEnji Cooper  *    notice, this list of conditions and the following disclaimer.
1557718be8SEnji Cooper  * 2. Redistributions in binary form must reproduce the above copyright
1657718be8SEnji Cooper  *    notice, this list of conditions and the following disclaimer in the
1757718be8SEnji Cooper  *    documentation and/or other materials provided with the distribution.
1857718be8SEnji Cooper  *
1957718be8SEnji Cooper  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2057718be8SEnji Cooper  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2157718be8SEnji Cooper  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2257718be8SEnji Cooper  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2357718be8SEnji Cooper  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2457718be8SEnji Cooper  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2557718be8SEnji Cooper  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2657718be8SEnji Cooper  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2757718be8SEnji Cooper  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2857718be8SEnji Cooper  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2957718be8SEnji Cooper  * POSSIBILITY OF SUCH DAMAGE.
3057718be8SEnji Cooper  */
3157718be8SEnji Cooper #include <sys/cdefs.h>
32*3b0a9131SEnji Cooper __RCSID("$NetBSD: t_detach.c,v 1.2 2017/01/16 16:29:54 christos Exp $");
3357718be8SEnji Cooper 
3457718be8SEnji Cooper #include <errno.h>
35*3b0a9131SEnji Cooper #include <pthread.h>
36*3b0a9131SEnji Cooper #include <time.h>
3757718be8SEnji Cooper 
3857718be8SEnji Cooper #include <atf-c.h>
3957718be8SEnji Cooper 
4057718be8SEnji Cooper #include "h_common.h"
4157718be8SEnji Cooper 
4257718be8SEnji Cooper static void	*func(void *);
4357718be8SEnji Cooper 
4457718be8SEnji Cooper static void *
func(void * arg)4557718be8SEnji Cooper func(void *arg)
4657718be8SEnji Cooper {
470c76184cSEnji Cooper 	sleep(2);
4857718be8SEnji Cooper 	return NULL;
4957718be8SEnji Cooper }
5057718be8SEnji Cooper 
5157718be8SEnji Cooper ATF_TC(pthread_detach);
ATF_TC_HEAD(pthread_detach,tc)5257718be8SEnji Cooper ATF_TC_HEAD(pthread_detach, tc)
5357718be8SEnji Cooper {
5457718be8SEnji Cooper 	atf_tc_set_md_var(tc, "descr", "A test of pthread_detach(3)");
5557718be8SEnji Cooper }
5657718be8SEnji Cooper 
ATF_TC_BODY(pthread_detach,tc)5757718be8SEnji Cooper ATF_TC_BODY(pthread_detach, tc)
5857718be8SEnji Cooper {
5957718be8SEnji Cooper 	const int state = PTHREAD_CREATE_JOINABLE;
6057718be8SEnji Cooper 	pthread_attr_t attr;
6157718be8SEnji Cooper 	pthread_t t;
6257718be8SEnji Cooper 	int rv;
6357718be8SEnji Cooper 
6457718be8SEnji Cooper 	/*
6557718be8SEnji Cooper 	 * Create a joinable thread.
6657718be8SEnji Cooper 	 */
6757718be8SEnji Cooper 	PTHREAD_REQUIRE(pthread_attr_init(&attr));
6857718be8SEnji Cooper 	PTHREAD_REQUIRE(pthread_attr_setdetachstate(&attr, state));
6957718be8SEnji Cooper 	PTHREAD_REQUIRE(pthread_create(&t, &attr, func, NULL));
7057718be8SEnji Cooper 
7157718be8SEnji Cooper 	/*
7257718be8SEnji Cooper 	 * Detach the thread and try to
7357718be8SEnji Cooper 	 * join it; EINVAL should follow.
7457718be8SEnji Cooper 	 */
7557718be8SEnji Cooper 	PTHREAD_REQUIRE(pthread_detach(t));
7657718be8SEnji Cooper 
770c76184cSEnji Cooper 	sleep(1);
7857718be8SEnji Cooper 	rv = pthread_join(t, NULL);
7957718be8SEnji Cooper 	ATF_REQUIRE(rv == EINVAL);
8057718be8SEnji Cooper 
810c76184cSEnji Cooper 	sleep(3);
82ff9d081dSEnji Cooper 
8357718be8SEnji Cooper 	/*
8457718be8SEnji Cooper 	 * As usual, ESRCH should follow if
8557718be8SEnji Cooper 	 * we try to detach an invalid thread.
8657718be8SEnji Cooper 	 */
870c76184cSEnji Cooper 	rv = pthread_cancel(t);
8857718be8SEnji Cooper 	ATF_REQUIRE(rv == ESRCH);
8957718be8SEnji Cooper }
9057718be8SEnji Cooper 
ATF_TP_ADD_TCS(tp)9157718be8SEnji Cooper ATF_TP_ADD_TCS(tp)
9257718be8SEnji Cooper {
9357718be8SEnji Cooper 	ATF_TP_ADD_TC(tp, pthread_detach);
9457718be8SEnji Cooper 
9557718be8SEnji Cooper 	return atf_no_error();
9657718be8SEnji Cooper }
97