1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright 2011-2022 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include <arpa/inet.h>
24 #include <sys/socket.h>
28 static pthread_mutex_t mutex
= PTHREAD_MUTEX_INITIALIZER
;
30 /* System V IPC identifiers. */
31 static int shmid
= -1, semid
= -1, msqid
= -1;
33 /* Delete any System V IPC resources that were allocated. */
39 shmctl (shmid
, IPC_RMID
, NULL
);
41 semctl (semid
, 0, IPC_RMID
, NULL
);
43 msgctl (msqid
, IPC_RMID
, NULL
);
47 thread_proc (void *args
)
49 pthread_mutex_lock (&mutex
);
50 pthread_mutex_unlock (&mutex
);
58 const int flags
= IPC_CREAT
| 0666;
59 key_t shmkey
= 3925, semkey
= 7428, msgkey
= 5294;
62 struct sockaddr_in sock_addr
;
66 int status
, try, retries
= 1000;
70 for (try = 0; try < retries
; ++try)
72 shmid
= shmget (shmkey
, 4096, flags
| IPC_EXCL
);
81 printf ("Cannot create shared-memory region after %d tries.\n", retries
);
85 for (try = 0; try < retries
; ++try)
87 semid
= semget (semkey
, 1, flags
| IPC_EXCL
);
96 printf ("Cannot create semaphore after %d tries.\n", retries
);
100 for (try = 0; try < retries
; ++try)
102 msqid
= msgget (msgkey
, flags
| IPC_EXCL
);
111 printf ("Cannot create message queue after %d tries.\n", retries
);
115 fd
= fopen ("/dev/null", "r");
117 /* Lock the mutex to prevent the new thread from finishing immediately. */
118 pthread_mutex_lock (&mutex
);
119 pthread_create (&thread
, NULL
, thread_proc
, 0);
121 sock
= socket (PF_INET
, SOCK_STREAM
, IPPROTO_TCP
);
124 printf ("Cannot create socket.\n");
128 sock_addr
.sin_family
= AF_INET
;
129 sock_addr
.sin_port
= 0; /* Bind to a free port. */
130 sock_addr
.sin_addr
.s_addr
= htonl (INADDR_ANY
);
132 status
= bind (sock
, (struct sockaddr
*) &sock_addr
, sizeof (sock_addr
));
135 printf ("Cannot bind socket.\n");
139 /* Find the assigned port number of the socket. */
140 size
= sizeof (sock_addr
);
141 status
= getsockname (sock
, (struct sockaddr
*) &sock_addr
, &size
);
144 printf ("Cannot find name of socket.\n");
147 port
= ntohs (sock_addr
.sin_port
);
149 status
= listen (sock
, 1);
152 printf ("Cannot listen on socket.\n");
156 /* Set breakpoint here. */
161 pthread_mutex_unlock (&mutex
);
162 pthread_join (thread
, NULL
);