Tagged Questions
0
votes
1answer
194 views
How is the ulimit -c unlimited command used and what does it do?
I'm helping to write a program right now, and on windows, the program works fine. On the mac, after changing the framework directory to the only suitable location, I'm getting this error:
run:
A ...
1
vote
2answers
201 views
C - Difficulties writing whole struct to Shared Memory
I'm having problems writing a structure to shared memory because when I do, the code only writes the first part of the structure.
Here's my data structure:
struct shmData{
char number[4];
...
-2
votes
1answer
220 views
can some help understand this objdump of c [closed]
08048544 <compare_password>:
8048544: 55 push %ebp
8048545: 89 e5 mov %esp,%ebp
8048547: 83 ec 38 sub $0x38,%esp
804854a: ...
0
votes
2answers
149 views
Debugging the C crash dump on Windows x64
There is a crash dump (FULL dump created by setting LocalDump registry key as explained here) that got created on a Windows x64 2008 R2 machine and I am able to debug this dump file using VS 2010 on ...
0
votes
0answers
79 views
How to get a header dump on C libraries similar to the known class-dump on Objective-C libraries?
As you probably know, in order to dump the header files from Objective-C libraries, we use class-dump / class-dump-z tool.
Is there a similar tool for dumping C libraries?
My goal is the header files ...
-2
votes
3answers
431 views
Can some one write assembly code for the c program above that converts into machine code that is less than 100 bytes?
I want to overflow the array buffer[100] and I will be passing python script on bash shell on FreeBSD. I need machine code to pass as a string to overflow that buffer buffer[100] and make the program ...
2
votes
4answers
153 views
catch exception on pure C without try-catch mechanism
I need to create a dump file when there is an exception.
Is it possible to do so without using __try{...} and __except(e){...} ?
Is there a way to create a callback function or register an action ...
0
votes
1answer
369 views
how to programmatically create dump file using pure C language?
I need to create a dump file for a customer program written in C.
I saw that there is a minidump for windows, is it working only on C++ ?
Is there any other solution for C language?
Thank you for ...
0
votes
3answers
186 views
How to generate a file from C-hexvalues?
I have a C-array that looks like this:
char hexc[] = {
0x41, 0x80, 0x7a, 0x39, 0xea, 0x7e, 0x27, 0xfc,
0xe6, 0x45, 0x9c, 0x8b, 0xb5, 0xce, 0xa7, 0x35,
0x5f, 0xf2, 0x43, 0xcf, 0x89, ...
3
votes
1answer
300 views
Debugger: How do I get “Mutex Owned” or “Mutex Free” info in a crash dump?
I don't know what I'm not doing but I simply cannot get my own debugger to save the "Mutex Owned" or "Mutex Free" info for the application being debugged.
CDB works fine if I call it as follows:
...
3
votes
3answers
1k views
How to get the relative adress of a field in a structure dump. [C]
We're working on a C program compiled with arm-eabi-gcc under Linux.
We're using a dump of a large structure and we're having problems determining at which adress we should read various fields of ...
1
vote
2answers
566 views
How do I dump an arbitrary struct in C?
I don't know which direction to go,perhaps something like reflection will help?
1
vote
0answers
523 views
How to dump private FrameWork which programmed by C language? [closed]
I program a software which is not submitted on the Apple Store so that i use the class-dump to dump the header file. It can dump the private framework which is written by Object-c but the framework ...
6
votes
2answers
3k views
find out what functions a static C library has
I have a static C library (say mylib.a) and I was wondering if it's possible to find out what functions are implemented inside that file. I don't have a corresponding header file. what I need is like ...
21
votes
4answers
26k views
core dumped - but core file is not in current directory?
While running a C program, It says "(core dumped)" but I can't see any files under current path.
I have set and verified the ulimit:
ulimit -c unlimited
ulimit -a
I also tried to find file named ...
1
vote
6answers
1k views
Stack overflow in IIRF (a C program, ISAPI)
I am using IIRF - an ISAPI rewrite filter for pretty URL's. I haven't been able to get much help from the developer on these issues. I'm hoping by making some sense of this dump, so I can find the ...