linux_emul.h (ad2056f2c46cd6f28b2f7a4bd0e1a72198b19eee) | linux_emul.h (0eef2f8a4e5f42f98983e352732b9d883d96c53a) |
---|---|
1/*- 2 * Copyright (c) 2006 Roman Divacky 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 --- 24 unchanged lines hidden (view full) --- 33 34struct linux_emuldata_shared { 35 int refs; 36 pid_t group_pid; 37 38 LIST_HEAD(, linux_emuldata) threads; /* head of list of linux threads */ 39}; 40 | 1/*- 2 * Copyright (c) 2006 Roman Divacky 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 --- 24 unchanged lines hidden (view full) --- 33 34struct linux_emuldata_shared { 35 int refs; 36 pid_t group_pid; 37 38 LIST_HEAD(, linux_emuldata) threads; /* head of list of linux threads */ 39}; 40 |
41/* modeled after similar structure in NetBSD | 41/* 42 * modeled after similar structure in NetBSD |
42 * this will be extended as we need more functionality 43 */ 44struct linux_emuldata { 45 pid_t pid; 46 47 int *child_set_tid; /* in clone(): Child's TID to set on clone */ 48 int *child_clear_tid; /* in clone(): Child's TID to clear on exit */ 49 --- 25 unchanged lines hidden --- | 43 * this will be extended as we need more functionality 44 */ 45struct linux_emuldata { 46 pid_t pid; 47 48 int *child_set_tid; /* in clone(): Child's TID to set on clone */ 49 int *child_clear_tid; /* in clone(): Child's TID to clear on exit */ 50 --- 25 unchanged lines hidden --- |