diff options
Diffstat (limited to 'libps')
-rw-r--r-- | libps/Makefile | 3 | ||||
-rw-r--r-- | libps/spec.c | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/libps/Makefile b/libps/Makefile index d3c0b187..07d27eeb 100644 --- a/libps/Makefile +++ b/libps/Makefile @@ -24,7 +24,7 @@ makemode := library libname = libps SRCS = context.c filters.c fmt.c host.c proclist.c procstat.c spec.c \ - tty.c user.c write.c + tty.c user.c write.c ../utils/msgids.c installhdrs = ps.h installhdrsubdir = . @@ -33,6 +33,7 @@ OBJS = $(SRCS:.c=.o) msgUser.o termUser.o msg-MIGUFLAGS = -D'MSG_IMPORTS=waittime 1000;' -DUSERPREFIX=ps_ term-MIGUFLAGS = -D'TERM_IMPORTS=waittime 1000;' -DUSERPREFIX=ps_ +../utils/msgids-CPPFLAGS = -DDATADIR=\"${datadir}\" ps_%.h: %_U.h sed 's/_$*_user_/_ps_$*_user_/g' $< > $@ diff --git a/libps/spec.c b/libps/spec.c index 4760c431..c9164f9d 100644 --- a/libps/spec.c +++ b/libps/spec.c @@ -32,10 +32,16 @@ #include "ps.h" #include "common.h" +#include "../utils/msgids.h" /* XXX */ static char *get_syscall_name (int num) { return 0; } -static char *get_rpc_name (mach_msg_id_t it) { return 0; } + +static char *get_rpc_name (mach_msg_id_t it) +{ + const struct msgid_info *info = msgid_info (it); + return info ? info->name : 0; +} /* ---------------------------------------------------------------- */ /* Getter definitions */ |