summaryrefslogtreecommitdiffstats
path: root/osdep-darwin.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-04-10 12:46:29 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-04-10 12:46:29 +0100
commit46b3c1a02564268ab810d0f54190f1e8fc1f4f6d (patch)
treee058aa082659ced0c6f3b65c3e85fb0617e05ef5 /osdep-darwin.c
parent3ea893464f0deb382a41dbab6a4de12c008a4fd9 (diff)
Use proc_bsdinfo which works on older OS X versions, from OZAKI Kiichi.
Diffstat (limited to 'osdep-darwin.c')
-rw-r--r--osdep-darwin.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/osdep-darwin.c b/osdep-darwin.c
index 3b5e9d3c..dc60b092 100644
--- a/osdep-darwin.c
+++ b/osdep-darwin.c
@@ -18,7 +18,6 @@
#include <sys/types.h>
-#include <Availability.h>
#include <event.h>
#include <libproc.h>
#include <stdlib.h>
@@ -34,19 +33,17 @@ struct event_base *osdep_event_init(void);
char *
osdep_get_name(int fd, unused char *tty)
{
-#ifdef __MAC_10_7
- struct proc_bsdshortinfo bsdinfo;
+ struct proc_bsdinfo bsdinfo;
pid_t pgrp;
int ret;
if ((pgrp = tcgetpgrp(fd)) == -1)
return (NULL);
- ret = proc_pidinfo(pgrp, PROC_PIDT_SHORTBSDINFO, 0,
+ ret = proc_pidinfo(pgrp, PROC_PIDTBSDINFO, 0,
&bsdinfo, sizeof bsdinfo);
- if (ret == sizeof bsdinfo && *bsdinfo.pbsi_comm != '\0')
- return (strdup(bsdinfo.pbsi_comm));
-#endif
+ if (ret == sizeof bsdinfo && *bsdinfo.pbi_comm != '\0')
+ return (strdup(bsdinfo.pbi_comm));
return (NULL);
}