Add AIX5 procfs support.

This commit is contained in:
Kevin Buettner
2001-03-27 02:01:11 +00:00
parent eb4a6e4f4b
commit 37de36c6ed
5 changed files with 782 additions and 297 deletions

View File

@@ -92,3 +92,11 @@ extern void procfs_note (char *, char *, int);
#define PROCFS_NOTE(X) procfs_note (X, __FILE__, __LINE__)
#define PROC_PRETTYFPRINT_STATUS(X,Y,Z,T) \
proc_prettyfprint_status (X, Y, Z, T)
/* Define the type (and more importantly the width) of the control
word used to write to the /proc/PID/ctl file. */
#if defined (PROC_CTL_WORD_TYPE)
typedef PROC_CTL_WORD_TYPE procfs_ctl_t;
#else
typedef long procfs_ctl_t;
#endif