mailing list of musl libc
 help / color / mirror / code / Atom feed
From: James Y Knight <jyknight@google.com>
To: musl@lists.openwall.com
Subject: [PATCH] Add gettid and tgkill syscall wrappers.
Date: Thu, 1 Aug 2019 16:31:11 -0400	[thread overview]
Message-ID: <CAA2zVHp2CiKHap0Fdg371YCXqC5ReEL3jcr3s5TwrtbiiUM8aA@mail.gmail.com> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #1.2: Type: text/html, Size: 26 bytes --]

[-- Attachment #2: 0001-Add-gettid-and-tgkill-syscall-wrappers.patch --]
[-- Type: text/x-patch, Size: 1882 bytes --]

From bdb4f28edece4b81e99becf4ffcdc69449211764 Mon Sep 17 00:00:00 2001
From: James Y Knight <jyknight@google.com>
Date: Thu, 1 Aug 2019 12:43:08 -0400
Subject: [PATCH] Add gettid and tgkill syscall wrappers.

---
 include/signal.h   | 1 +
 include/unistd.h   | 1 +
 src/linux/gettid.c | 8 ++++++++
 src/linux/tgkill.c | 8 ++++++++
 4 files changed, 18 insertions(+)
 create mode 100644 src/linux/gettid.c
 create mode 100644 src/linux/tgkill.c

diff --git a/include/signal.h b/include/signal.h
index 5c48cb83..6843323a 100644
--- a/include/signal.h
+++ b/include/signal.h
@@ -257,6 +257,7 @@ void (*bsd_signal(int, void (*)(int)))(int);
 int sigisemptyset(const sigset_t *);
 int sigorset (sigset_t *, const sigset_t *, const sigset_t *);
 int sigandset(sigset_t *, const sigset_t *, const sigset_t *);
+int tgkill(pid_t, pid_t, int);
 
 #define SA_NOMASK SA_NODEFER
 #define SA_ONESHOT SA_RESETHAND
diff --git a/include/unistd.h b/include/unistd.h
index 9485da7a..4764f157 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -188,6 +188,7 @@ char *get_current_dir_name(void);
 int syncfs(int);
 int euidaccess(const char *, int);
 int eaccess(const char *, int);
+pid_t gettid(void);
 #endif
 
 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
diff --git a/src/linux/gettid.c b/src/linux/gettid.c
new file mode 100644
index 00000000..6490101d
--- /dev/null
+++ b/src/linux/gettid.c
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <unistd.h>
+#include "syscall.h"
+
+pid_t gettid(void)
+{
+	return __syscall(SYS_gettid);
+}
diff --git a/src/linux/tgkill.c b/src/linux/tgkill.c
new file mode 100644
index 00000000..97365d58
--- /dev/null
+++ b/src/linux/tgkill.c
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <signal.h>
+#include "syscall.h"
+
+int tgkill(pid_t pid, pid_t tid, int sig)
+{
+	return syscall(SYS_tgkill, pid, tid, sig);
+}
-- 
2.22.0.770.g0f2c4a37fd-goog


             reply	other threads:[~2019-08-01 20:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-01 20:31 James Y Knight [this message]
2019-08-02 20:25 ` Rich Felker
2019-08-02 21:46   ` Szabolcs Nagy
2019-08-07 16:16   ` Florian Weimer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAA2zVHp2CiKHap0Fdg371YCXqC5ReEL3jcr3s5TwrtbiiUM8aA@mail.gmail.com \
    --to=jyknight@google.com \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).