This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Core dumps


> $russell@home~: ulimit
> $unlimited
> 
> What else can i try?

What shell do you use? I use zsh, and I have to use "ulimit -c" to
modify the core-file size:

        %ulimit
        unlimited
        %ulimit -a
        cpu time (seconds)         unlimited
        file size (blocks)         unlimited
        data seg size (kbytes)     unlimited
        stack size (kbytes)        8192
        core file size (blocks)    0
        unlimited
        processes                  4093
        file descriptors           1024
        locked-in-memory size (kb) unlimited
        memory size (kb)           unlimited
        file locks                 unlimited
        %ulimit -c 2000000
        %ulimit -a
        cpu time (seconds)         unlimited
        file size (blocks)         unlimited
        data seg size (kbytes)     unlimited
        stack size (kbytes)        8192
        core file size (blocks)    2000000
        unlimited
        processes                  4093
        file descriptors           1024
        locked-in-memory size (kb) unlimited
        memory size (kb)           unlimited
        file locks                 unlimited

-- 
Joel



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]