summaryrefslogtreecommitdiff
path: root/usr/src/lib/libc/port/threads
diff options
context:
space:
mode:
authorDan McDonald <danmcd@joyent.com>2022-04-20 14:46:04 -0400
committerDan McDonald <danmcd@joyent.com>2022-04-20 14:46:04 -0400
commitedca041beee90a450071fd47356c26905e1b9937 (patch)
treebd9182e1cf7a01446f4145ddd32f98ee29305cba /usr/src/lib/libc/port/threads
parentf077edea49a734a4c170f2c437f67f85291543e7 (diff)
parentdf5cd018c34371890eeeb8c930245b9323e8aa25 (diff)
downloadillumos-joyent-release-20220421.tar.gz
[illumos-gate merge]release-20220421
commit df5cd018c34371890eeeb8c930245b9323e8aa25 14418 mman.h symbol visibility is a mess commit 34331de35882eb41acdf4f0d2065b5e12d083e82 14531 want nvme namespace management mutex commit 353d89b0745ef752e824c1afc3f0474f66dfbd64 14530 nvme should require exclusive open for attach, detach, and format ioctls commit c542a624b7efda0b8123026500f05f430ff6c770 14607 Add CONS_GETDEV so we can see which port is /dev/console
Diffstat (limited to 'usr/src/lib/libc/port/threads')
-rw-r--r--usr/src/lib/libc/port/threads/scalls.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/usr/src/lib/libc/port/threads/scalls.c b/usr/src/lib/libc/port/threads/scalls.c
index 4a62ea76b9..b45468f77a 100644
--- a/usr/src/lib/libc/port/threads/scalls.c
+++ b/usr/src/lib/libc/port/threads/scalls.c
@@ -527,7 +527,7 @@ write(int fd, const void *buf, size_t size)
int
getmsg(int fd, struct strbuf *ctlptr, struct strbuf *dataptr,
- int *flagsp)
+ int *flagsp)
{
extern int __getmsg(int, struct strbuf *, struct strbuf *, int *);
int rv;
@@ -537,7 +537,7 @@ getmsg(int fd, struct strbuf *ctlptr, struct strbuf *dataptr,
int
getpmsg(int fd, struct strbuf *ctlptr, struct strbuf *dataptr,
- int *bandp, int *flagsp)
+ int *bandp, int *flagsp)
{
extern int __getpmsg(int, struct strbuf *, struct strbuf *,
int *, int *);
@@ -548,7 +548,7 @@ getpmsg(int fd, struct strbuf *ctlptr, struct strbuf *dataptr,
int
putmsg(int fd, const struct strbuf *ctlptr,
- const struct strbuf *dataptr, int flags)
+ const struct strbuf *dataptr, int flags)
{
extern int __putmsg(int, const struct strbuf *,
const struct strbuf *, int);
@@ -559,7 +559,7 @@ putmsg(int fd, const struct strbuf *ctlptr,
int
__xpg4_putmsg(int fd, const struct strbuf *ctlptr,
- const struct strbuf *dataptr, int flags)
+ const struct strbuf *dataptr, int flags)
{
extern int __putmsg(int, const struct strbuf *,
const struct strbuf *, int);
@@ -570,7 +570,7 @@ __xpg4_putmsg(int fd, const struct strbuf *ctlptr,
int
putpmsg(int fd, const struct strbuf *ctlptr,
- const struct strbuf *dataptr, int band, int flags)
+ const struct strbuf *dataptr, int band, int flags)
{
extern int __putpmsg(int, const struct strbuf *,
const struct strbuf *, int, int);
@@ -581,7 +581,7 @@ putpmsg(int fd, const struct strbuf *ctlptr,
int
__xpg4_putpmsg(int fd, const struct strbuf *ctlptr,
- const struct strbuf *dataptr, int band, int flags)
+ const struct strbuf *dataptr, int band, int flags)
{
extern int __putpmsg(int, const struct strbuf *,
const struct strbuf *, int, int);
@@ -607,7 +607,7 @@ nanosleep(const timespec_t *rqtp, timespec_t *rmtp)
int
clock_nanosleep(clockid_t clock_id, int flags,
- const timespec_t *rqtp, timespec_t *rmtp)
+ const timespec_t *rqtp, timespec_t *rmtp)
{
timespec_t reltime;
hrtime_t start;
@@ -810,7 +810,7 @@ msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg)
}
int
-msync(caddr_t addr, size_t len, int flags)
+msync(void *addr, size_t len, int flags)
{
extern int __msync(caddr_t, size_t, int);
int rv;
@@ -1007,7 +1007,7 @@ sigsuspend(const sigset_t *set)
int
_pollsys(struct pollfd *fds, nfds_t nfd, const timespec_t *timeout,
- const sigset_t *sigmask)
+ const sigset_t *sigmask)
{
extern int __pollsys(struct pollfd *, nfds_t, const timespec_t *,
const sigset_t *);