[Devel] Re: [PATCH -utrace] Move utrace into task_struct
Jan Engelhardt
jengelh at linux01.gwdg.de
Wed May 2 04:53:44 PDT 2007
On May 2 2007 15:32, Alexey Dobriyan wrote:
>--- a/include/linux/utrace.h
>+++ b/include/linux/utrace.h
>@@ -50,11 +50,30 @@ #include <linux/sched.h>
>
> struct linux_binprm;
> struct pt_regs;
>-struct utrace;
>+struct task_struct;
> struct utrace_signal;
> struct utrace_regset;
> struct utrace_regset_view;
>
>+#ifdef CONFIG_UTRACE
>+struct utrace {
>+ unsigned long flags;
>+ union {
>+ struct {
>+ struct task_struct *cloning;
>+ struct utrace_signal *signal;
>+ } live;
>+ struct {
>+ unsigned long flags;
>+ } exit;
>+ } u;
You can have anonymous unions. (Though that won't work with
static initializers - are there any?)
Jan
--
More information about the Devel
mailing list