]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/htl/pt-kill.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / sysdeps / htl / pt-kill.c
CommitLineData
33574c17 1/* pthread-kill.c - Generic pthread-kill implementation.
04277e02 2 Copyright (C) 2008-2019 Free Software Foundation, Inc.
33574c17
ST
3 Written by Neal H. Walfield <neal@gnu.org>.
4
5 This file is part of the GNU Hurd.
6
7 The GNU Hurd is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public License
9 as published by the Free Software Foundation; either version 3 of
10 the License, or (at your option) any later version.
11
12 The GNU Hurd is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this program. If not, see
5a82c748 19 <https://www.gnu.org/licenses/>. */
33574c17
ST
20
21#include <pthreadP.h>
22#include "sig-internal.h"
23
24int
25__pthread_kill (pthread_t tid, int signo)
26{
27 siginfo_t si;
28 memset (&si, 0, sizeof (si));
29 si.si_signo = signo;
30
31 return pthread_kill_siginfo_np (tid, si);
32}
33strong_alias (__pthread_kill, pthread_kill)