diff options
author | Justus Winter <justus@gnupg.org> | 2016-02-28 17:21:35 +0100 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2016-02-28 17:34:08 +0100 |
commit | 689810afe2d20d5f24f2a2379d3b9feffd0e9698 (patch) | |
tree | bbd4406e7ac23d5312f07d35b18d6a1ad8cad97e /ipc | |
parent | 48b69fb81c590bee4ace4ed98064771db9ec31ca (diff) | |
download | gnumach-689810afe2d20d5f24f2a2379d3b9feffd0e9698.tar.gz gnumach-689810afe2d20d5f24f2a2379d3b9feffd0e9698.tar.bz2 gnumach-689810afe2d20d5f24f2a2379d3b9feffd0e9698.zip |
ipc: add missing kernel object type
* ipc/ipc_object.c (ikot_print_array): Add entry for IKOT_PAGER_PROXY.
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_object.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ipc/ipc_object.c b/ipc/ipc_object.c index 320fbcb2..a6457c37 100644 --- a/ipc/ipc_object.c +++ b/ipc/ipc_object.c @@ -998,7 +998,8 @@ char *ikot_print_array[IKOT_MAX_TYPE] = { "(SEMAPHORE) ", "(LOCK_SET) ", "(CLOCK) ", - "(CLOCK_CTRL) ", /* 26 */ + "(CLOCK_CTRL) ", + "(PAGER_PROXY) ", /* 27 */ /* << new entries here */ "(UNKNOWN) " /* magic catchall */ }; /* Please keep in sync with kern/ipc_kobject.h */ |