diff options
Diffstat (limited to 'libshouldbeinlibc')
-rw-r--r-- | libshouldbeinlibc/portinfo.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libshouldbeinlibc/portinfo.h b/libshouldbeinlibc/portinfo.h index 697495b8..bef2fa00 100644 --- a/libshouldbeinlibc/portinfo.h +++ b/libshouldbeinlibc/portinfo.h @@ -39,8 +39,8 @@ error_t print_port_info (mach_port_t name, mach_port_type_t type, task_t task, unsigned show, FILE *stream); /* Prints info about every port in TASK that has a type in ONLY to STREAM. */ -error_t print_task_print_task_ports_info (task_t task, mach_port_type_t only, - unsigned show, FILE *stream); +error_t print_task_ports_info (task_t task, mach_port_type_t only, + unsigned show, FILE *stream); /* Prints info about NAME translated through X to STREAM, in a way described by the flags in SHOW. If TYPE is non-zero, it should be what @@ -51,8 +51,8 @@ error_t print_xlated_port_info (mach_port_t name, mach_port_type_t type, /* Prints info about every port common to both tasks in X, but only if the port in X->from_task has a type in ONLY, to STREAM. */ -error_t print_xlated_ports_info (struct port_name_xlator *x, - mach_port_type_t only, - unsigned show, FILE *stream); +error_t print_xlated_task_ports_info (struct port_name_xlator *x, + mach_port_type_t only, + unsigned show, FILE *stream); #endif /* __PORTINFO_H__ */ |