Hi,
is it normal that in some functions like

        tc_ticktock(void)
        {
                static int count;
        
                if (++count < tc_tick)
                        return;
                count = 0;
                tc_windup();
        }

the static variables are not initialized?

- kern_tc.c l.547
- kern_resource.c l.499
- kern_sched.c l.106
- subr_extent.c l.130
- ...

Reply via email to