Search Results

6
votes
8answers
3k views

Checking available stack size in C

I'm using MinGW with GCC 3.4.5 (mingw-special vista r3). My C application uses a lot of stack so I was wondering is there any way I can tell programatically how much stack is remaining so I …
2
votes
4answers
244 views

Reset screen point to the top of screen in Windows & Linux console

I have a little routine that's run under Linux and Windows written in C and displays output on the console. I'm not linking in any form of curses or anything like that. Currently I clear th …
1
vote
4answers
992 views

Confused by gdb print ptr vs print “%s”

1167 ptr = (void*)getcwd(cwd, MAX_PATH_LENGTH-1); (gdb) n 1168 if (!ptr) { (gdb) print ptr $1 = 0xbff2d96c "/media/MMC-SD/partition1/aaaaaaaaaaa" (gdb) print &cwd $2 = (char ( …
1
vote

How do you printf an unsigned long long int?

That is because %llu doesn't work properly under Windows and %d can't handle 64 bit integers. I suggest using PRIu64 instead and you'll find it's portable to Linux as well. Try this instead …
0
votes

Reset screen point to the top of screen in Windows & Linux console

Looks like I may have found a windows specific way of doing it SetConsoleCursorPosition Ansi escape …