Re: 2.6.11 bug: unbacked private shared memory segments missing in core dump

2005-03-23 Thread Jochen Suckfuell
On Mon, Mar 21, 2005 at 03:29:48PM -0800, Andrew Morton wrote: > Jochen Suckfuell <[EMAIL PROTECTED]> wrote: > > > > Hello! > > > > Since 2.6.10, unbacked private shared memory allocated via shmget is not > > included in core dumps. > > Can you please confirm that 2.6.12-rc1 fixed this? Yes, it

Re: 2.6.11 bug: unbacked private shared memory segments missing in core dump

2005-03-21 Thread Andrew Morton
Jochen Suckfuell <[EMAIL PROTECTED]> wrote: > > Hello! > > Since 2.6.10, unbacked private shared memory allocated via shmget is not > included in core dumps. Can you please confirm that 2.6.12-rc1 fixed this? Thanks. > This is a simple example code demonstrating the bug: > > #include > > int

2.6.11 bug: unbacked private shared memory segments missing in core dump

2005-03-08 Thread Jochen Suckfuell
Hello! Since 2.6.10, unbacked private shared memory allocated via shmget is not included in core dumps. This is a simple example code demonstrating the bug: #include int main(int argc, char ** argv) { int size = 1000; int id = shmget(IPC_PRIVATE, size, (IPC_CREAT | 0660));