procfs.h (16b0c20c82c73d7ff49d7d9604fba64eff0c9c45) | procfs.h (93898f2b2d3339874ac31d935b8c67c67b6929ba) |
---|---|
1/*- 2 * Copyright (c) 1998 John D. Polstra. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 66 unchanged lines hidden (view full) --- 75 76typedef struct prpsinfo { 77 int pr_version; /* Version number of struct (1) */ 78 size_t pr_psinfosz; /* sizeof(prpsinfo_t) (1) */ 79 char pr_fname[PRFNAMESZ+1]; /* Command name, null terminated (1) */ 80 char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */ 81} prpsinfo_t; 82 | 1/*- 2 * Copyright (c) 1998 John D. Polstra. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 66 unchanged lines hidden (view full) --- 75 76typedef struct prpsinfo { 77 int pr_version; /* Version number of struct (1) */ 78 size_t pr_psinfosz; /* sizeof(prpsinfo_t) (1) */ 79 char pr_fname[PRFNAMESZ+1]; /* Command name, null terminated (1) */ 80 char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */ 81} prpsinfo_t; 82 |
83typedef uintptr_t psaddr_t; /* An address in the target process. */ | 83typedef uint64_t psaddr_t; /* An address in the target process. */ |
84 85#endif /* _SYS_PROCFS_H_ */ | 84 85#endif /* _SYS_PROCFS_H_ */ |