freebsd32.h (d899be7d43d8df9cb485af5705e2724165a461c7) | freebsd32.h (dbee5c671aa8cf7673e92ca7ce6d227f52cb185c) |
---|---|
1/*- 2 * Copyright (c) 2001 Doug Rabson 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 --- 229 unchanged lines hidden (view full) --- 238}; 239 240struct i386_ldt_args32 { 241 uint32_t start; 242 uint32_t descs; 243 uint32_t num; 244}; 245 | 1/*- 2 * Copyright (c) 2001 Doug Rabson 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 --- 229 unchanged lines hidden (view full) --- 238}; 239 240struct i386_ldt_args32 { 241 uint32_t start; 242 uint32_t descs; 243 uint32_t num; 244}; 245 |
246/* 247 * Alternative layouts for <sys/procfs.h> 248 */ 249struct prstatus32 { 250 int pr_version; 251 u_int pr_statussz; 252 u_int pr_gregsetsz; 253 u_int pr_fpregsetsz; 254 int pr_osreldate; 255 int pr_cursig; 256 pid_t pr_pid; 257 struct reg32 pr_reg; 258}; 259 260struct prpsinfo32 { 261 int pr_version; 262 u_int pr_psinfosz; 263 char pr_fname[PRFNAMESZ+1]; 264 char pr_psargs[PRARGSZ+1]; 265}; 266 267struct thrmisc32 { 268 char pr_tname[MAXCOMLEN+1]; 269 u_int _pad; 270}; 271 | |
272struct mq_attr32 { 273 int mq_flags; 274 int mq_maxmsg; 275 int mq_msgsize; 276 int mq_curmsgs; 277 int __reserved[4]; 278}; 279 --- 120 unchanged lines hidden --- | 246struct mq_attr32 { 247 int mq_flags; 248 int mq_maxmsg; 249 int mq_msgsize; 250 int mq_curmsgs; 251 int __reserved[4]; 252}; 253 --- 120 unchanged lines hidden --- |