[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: fork: mach_port_mod_refs: EKERN_UREFS_OWERFLOW
From: |
Samuel Thibault |
Subject: |
Re: fork: mach_port_mod_refs: EKERN_UREFS_OWERFLOW |
Date: |
Mon, 22 Nov 2010 11:56:45 +0100 |
User-agent: |
Mutt/1.5.12-2006-07-14 |
Thomas Schwinge, le Mon 22 Nov 2010 09:38:24 +0100, a écrit :
> 463 (err = __mach_port_mod_refs (newtask, ss->thread,
> 464 MACH_PORT_RIGHT_SEND,
> 465 thread_refs)))
and
thread_refs = 65534
it happens that gnumach has
#define MACH_PORT_UREFS_MAX ((mach_port_urefs_t) ((1 << 16) - 1))
So the original issues seems to be that thread_refs went in the sky.
It's coming from some __mach_port_get_refs above.
Samuel