2
votes
OS X equivalent to OutputDebugString() ?
You might want to look into syslog since it is the de facto diagnostic method on UNIX-based systems. Something like:
#include <syslog.h>
/* Do this early on in y …
0
votes
What is a “Symbolication warning”?
I can honestly say that I have never seen this one before. I have seen a number of other dynamic linking problems just not this one. If the user is amenable to helping you with this defect, you mig …
0
votes
Eclipse RCP on OSX - How to stop logging to syslog?
I'm not at all familiar with Eclipse RCP, but I do have some experience with syslog. You are probably logging using either local0 or local1 as the facility. OSX directs …
3
votes
How do I force 64 bit integer arithmetic on OS X?
If you are using C99, include stdint.h and use uint64_t and int64_t. Other than that, unsigned long long a = 0x100000000ull; should work too. …
2
votes
2
votes
Problem with gprof on OS X: [program] is not of the host architecture
It sounds like test is built using an architecture that gprof doesn't expect. Try the following:
$ cat > test2.c
#include <stdio.h>
int main() { p …
2
votes
How does one automatically attach a debugger to a process at process start on OS X?
I don't think that you can have gdb launch in the same manner. Instead, run your parent process from within gdb or attach to the running process before it forks the helper off. There is a setting …
4
votes
Setting up OS X for Android development. OR Are *nix environments intentionally prohibitive?
If you do not have a .profile in your home directory, you can simply create it in your home directory - it is just a text file. One of the issues with owning and using a UNIX system i …
1
vote
Sending an int over TCP (C-programming)
My guess is that the read is failing resulting in com_result == -1. In this case, the value of ACK_ID is undefined stack garbage. Try this instead:
…
