diff options
author | Bryan Cantrill <bryan@joyent.com> | 2015-02-14 16:55:35 -0800 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2015-10-16 11:59:14 -0700 |
commit | a5eb7107f06a6e23e8e77e8d3a84c1ff90a73ac6 (patch) | |
tree | 70fac1fa3fb719f5145ff6db721af2c343faa4f2 /usr/src/cmd/truss | |
parent | 7509ca605713ac7f244b0e812b1712dd25f04da1 (diff) | |
download | illumos-gate-a5eb7107f06a6e23e8e77e8d3a84c1ff90a73ac6.tar.gz |
5640 want epoll support
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src/cmd/truss')
-rw-r--r-- | usr/src/cmd/truss/codes.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/cmd/truss/codes.c b/usr/src/cmd/truss/codes.c index 069268dc05..4e453da0c1 100644 --- a/usr/src/cmd/truss/codes.c +++ b/usr/src/cmd/truss/codes.c @@ -23,7 +23,7 @@ * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2013 by Delphix. All rights reserved. * Copyright 2011 Nexenta Systems, Inc. All rights reserved. - * Copyright (c) 2012, Joyent, Inc. All rights reserved. + * Copyright (c) 2014, Joyent, Inc. All rights reserved. * Copyright (c) 2014, OmniTI Computer Consulting, Inc. All rights reserved. */ @@ -703,6 +703,8 @@ const struct ioc { /* /dev/poll ioctl() control codes */ { (uint_t)DP_POLL, "DP_POLL", NULL }, { (uint_t)DP_ISPOLLED, "DP_ISPOLLED", NULL }, + { (uint_t)DP_PPOLL, "DP_PPOLL", NULL }, + { (uint_t)DP_EPOLLCOMPAT, "DP_EPOLLCOMPAT", NULL }, /* the old /proc ioctl() control codes */ #define PIOC ('q'<<8) { (uint_t)(PIOC|1), "PIOCSTATUS", NULL }, |