Assume a struct thread *td instead of a struct proc *p in the debug
printf macros.
This commit is contained in:
parent
2adf0f9f0c
commit
8571db1e83
@ -38,8 +38,8 @@
|
||||
*/
|
||||
extern u_char linux_debug_map[];
|
||||
#define ldebug(name) isclr(linux_debug_map, LINUX_SYS_linux_ ## name)
|
||||
#define ARGS(nm, fmt) "linux(%ld): "#nm"("fmt")\n", (long)p->p_pid
|
||||
#define LMSG(fmt) "linux(%ld): "fmt"\n", (long)p->p_pid
|
||||
#define ARGS(nm, fmt) "linux(%ld): "#nm"("fmt")\n", (long)td->td_proc->p_pid
|
||||
#define LMSG(fmt) "linux(%ld): "fmt"\n", (long)td->td_proc->p_pid
|
||||
|
||||
#ifdef MALLOC_DECLARE
|
||||
MALLOC_DECLARE(M_LINUX);
|
||||
|
Loading…
Reference in New Issue
Block a user