Tagged Questions
138
votes
18answers
51k views
Is there a good Valgrind substitute for Windows?
I was looking into Valgrind to help improve my C coding/debugging when I discovered it is only for Linux - I have no other need or interest in moving my OS to Linux so I was wondering if there is a ...
39
votes
6answers
2k views
How to get 100% CPU usage from a C program
This is quite an interesting question so let me set the scene. I work at The National Museum of Computing, and we have just managed to get a Cray Y-MP EL super computer from 1992 running, and we ...
33
votes
10answers
9k views
Is TCHAR still relevant?
I'm new to Windows programming and after reading the Petzold book I wonder:
is it still good practice to use the TCHAR type and the _T() function to declare strings or if I should just use the ...
31
votes
8answers
37k views
Is there a replacement for unistd.h for Windows (Visual C)?
I'm porting a relatively simple console program written for Unix to the Windows platform (Visual C++ 8.0). All the source files include "unistd.h", which doesn't exist. Removing it, I get complaints ...
23
votes
6answers
7k views
Do threads share the heap?
As far as I know each thread gets a distinct stack when the thread is created by the OS. I wonder if each thread has a heap distinct to itself also?
22
votes
4answers
712 views
Preventing MSYS 'bash' from killing processes that trap ^C
I have a console-mode Windows application (ported from Unix) that was originally designed to do a clean exit when it received ^C (Unix SIGINT). A clean exit in this case involves waiting, potentially ...
19
votes
21answers
21k views
C compiler for Windows?
I know C is not a very popular language but I need it for school. I'm fine working on Linux using gcc as my C compiler but would like a Windows solution. Any ideas? I've looked at Dev-C++ from ...
18
votes
7answers
9k views
How can I redirect stdout to some visible display in a Windows Application?
I have access to a third party library that does "good stuff." It issues status and progress messages to stdout. In a Console application I can see these messages just fine. In a Windows ...
17
votes
6answers
12k views
Safe remove USB-Drive using Win32 API?
Anyone knows how to remove a USB drive using the win32 API? I do a lot of work on embedded systems and on one of these I have to copy my programs on a usb-stick an insert it into the target hardware.
...
15
votes
2answers
1k views
Win32 - Backtrace from C code
I'm currently looking for a way to get backtrace information under Windows, from C code (no C++).
I'm building a cross-platform C library, with reference-counting memory management. It also have an ...
15
votes
5answers
544 views
Is rebasing DLLs (or providing an appropriate default load address) worth the trouble?
Rebasing a DLL means to fix up the DLL such, that it's preferred load adress is the load address that the Loader is actually able to load the DLL at.
This can either be achieved by a tool such as ...
15
votes
4answers
4k views
Is FindFirstChangeNotification the best API to use for file system change notification on windows?
I'm new to windows programming and I'm trying to get notified of all changes to the file system (similar to the information that FileMon from SysInternals displays, but via an API). Is a ...
14
votes
10answers
2k views
How do I write a C++ program that will easily compile in Linux and Windows?
I am making a C++ program.
One of my biggest annoyances with C++ is its supposed platform independence.
You all probably know that it is pretty much impossible to compile a Linux C++ program in ...
13
votes
8answers
4k views
What is the closest thing windows has to fork()?
I guess the question says it all.
I want to fork on windows. What is the most similar operation and how do I use it.
13
votes
9answers
3k views
C/C++ Compiler for windows
I'm trying to port a Linux app to windows. Nothing huge, just a small command line utility. However, the last time I worked with C in Windows, it was a 'hello world' app in Visual Studio 6.
I'm ...
13
votes
7answers
15k views
How to list physical disks?
How to list physical disks in windows?
In order to obtain a list of "\.\PhysicalDrive0" available.
13
votes
6answers
1k views
Converting Win16 C code to Win32
In general, what needs to be done to convert a 16 bit Windows program to Win32? I'm sure I'm not the only person to inherit a codebase and be stunned to find 16-bit code lurking in the corners.
The ...
12
votes
4answers
371 views
Determine between socket and fd
On unix everything is a file approach of function read(), write(), close() is not supported on Win32.
I want to emulate it but have no idea how to distinguish when sock is socket or fd on WinSocks2.
...
12
votes
5answers
4k views
CPU cache flush
I am interested in forcing a CPU cache flush in Windows (for benchmarking reasons, I want to emulate starting with no data in cpu cache), preferably a basic C implementation or win32 call. Is there a ...
12
votes
10answers
2k views
Why was wchar_t invented?
Why is wchar_t needed? How is it superior to short (or __int16 or whatever)?
(If it matters: I live in Windows world. I don't know what Linux does to support Unicode.)
12
votes
5answers
709 views
Differences between struct in C and C++
I am trying to convert a C++ struct to C but keep getting "undeclared identifier"? Does C++ have a different syntax for referring to structs?
struct KEY_STATE
{
bool kSHIFT; //if the shift key ...
11
votes
7answers
5k views
Fastest method of screen capturing
I want to write a screencasting program for the Windows platform, but am unsure of how to capture the screen. The only method I'm aware of is to use GDI, but I'm curious whether there are other ways ...
11
votes
3answers
764 views
How to programmatically create ssh tunnel in C/C++ cross-platform?
I need to connect via TCP to a port that's behind a firewall, accessible through an SSH tunnel. I can achieve connection by opening a tunnel and hittting that port, but I want to build this tunneling ...
11
votes
5answers
720 views
Is sending data via UDP sockets on the same machine reliable?
If i use UDP sockets for interprocess communication, can i expect that all send data is received by the other process in the same order?
I know this is not true for UDP in general.
11
votes
4answers
3k views
UTF-8 in Windows
How do I set the code page to UTF-8 in a C Windows program?
I have a third party library that has uses fopen to open files. I can use wcstombs to convert my Unicode filenames to the current code ...
10
votes
1answer
247 views
Is there a Windows API to detect USB overcurrent?
I'm trying to write an application that will take specific action when it detects an overcurrent condition on any USB port.
However, my googlefu is not able to come up with anything useful (though I ...
10
votes
5answers
1k views
Writing a portable command line wrapper in C
I'm writing a perl module called perl5i. Its aim is to fix a swath of common Perl problems in one module (using lots of other modules).
To invoke it on the command line for one liners you'd write: ...
10
votes
7answers
11k views
How can I hook Windows functions in C/C++?
If I have a function foo() that windows has implemented in kernel32.dll and it always returns true, can I have my program: "bar.exe" hook/detour that Windows function and make it return false for all ...
10
votes
5answers
6k views
What's the equivalent of Windows' QueryPerformanceCounter on OSX?
I'm porting a library from Windows to *NIX (currently OSX), does anyone now what function can I use instead of Microsoft's QueryPerformanceCounter and QueryPerformanceFrequency?
10
votes
5answers
14k views
Reading a windows *.dmp file
I was wonder if any knows how to open up a windows *.dmp file after a application crash written C/C++.
9
votes
7answers
354 views
How do you read directly from physical memory?
In C or C++ (windows), how do you read RAM by giving a physical (not virtual) address?
That means without going trough virtual memory system (mmu tables), and being specific to one process.
I already ...
9
votes
5answers
305 views
Avoiding all system messages and messages from other software
Here is the situation. The company I work for builds this piece of software in c that can make a Windows computer act a bit like a TV. Essentially, our piece of software is meant to be played full ...
9
votes
2answers
331 views
Programming In C + Win API: How To Get Windows 7 Look For Controls?
I am programming strictly in C and WinAPI, no C++ or C#. I am a beginner and just learning to draw controls etc. The thing is that when I create Windows or other controls like Command Buttons, they ...
9
votes
6answers
4k views
How to compile LEX/YACC files on Windows?
I'm having Lex and YACC files to parse my files (.l file and .y file)
How to compile those files and how to make equivalent .c file for this
Which tool i've to for this.
I'm using windows 7 , i've ...
9
votes
4answers
682 views
How to access CPU's heat sensors?
I am working on software in which I need to access the temperature sensors in the CPU and get control over them.
I don't know much hardware interfacing; I just know how to interface with the mouse. I ...
9
votes
4answers
537 views
Rounding differences on Windows vs Unix based system in sprintf
I have problem on UNIX based systems sprintf does not round up properly value.
For example
double tmp = 88888888888885.875
char out[512];
Thats 88,888,888,888,885.875 just to be easier on eyes.
I ...
9
votes
5answers
848 views
Detect when a Module (DLL) is unloaded
Is there a way to progammatically detect when a module - specifically a DLL - has been unloaded from a process?
I don't have the DLL source, so I can't change it's DLL entry point. Nor can I poll if ...
9
votes
6answers
322 views
Finding security problems in a given code
Can some one please tell me an approach for finding security flaws in a given code. For ex: in a given socket program. Any good examples or good book recommendations are welcome.
Thanks & ...
9
votes
5answers
3k views
Installing PygraphViz on Windows, Python 2.6
Anybody out there has successfully installed PygraphViz on Windows?
Since there is not an official release for Windows, I'm trying to build it myself, but it fails to compile. I'm not the first one ...
9
votes
2answers
830 views
Windows equivalent to Linux's readahead syscall?
Is there a Windows equivalent to Linux's readahead syscall?
EDIT:
I would like a full function signature if possible, showing the equivalent offset/count parameters (or lower/upper).
Eg:
The Linux ...
9
votes
3answers
707 views
How to tame the Windows headers (useful defines)?
In one of the answers to this question jalf spoke about useful define NOMINMAX, that could prevent from unwanted defining min/max macros. Are there other useful defines that can help to control ...
9
votes
8answers
2k views
64 bit large mallocs
What are the reasons a malloc() would fail, especially in 64 bit?
My specific problem is trying to malloc a huge 10GB chunk of RAM on a 64 bit system.
The machine has 12GB of RAM, and 32 GB of swap.
...
9
votes
1answer
1k views
Windows: Overwrite File In Use
I am trying to write a utility that will allow moving files in Windows, and when it finds a file in use, will set that file to be moved on reboot.
It seems that MoveFileEx ...
9
votes
4answers
2k views
Creating big file on Windows
I need to create big relatively big (1-8 GB) files. What is the fastest way to do so on Windows using C or C++ ? I need to create them on the fly and the speed is really an issue. File will be used ...
8
votes
3answers
314 views
Can you detect a debugger attached to your process using Div by Zero
Can you detect whether or not a debugger is attached to your native Windows process by using a high precision timer to time how long it takes to divide an integer by zero?
The rationale is that if no ...
8
votes
7answers
311 views
how to schedule two tasks?
I am novice in process/task management.
I would like to schedule two tasks.
suppose,
fun1()
{
printf("It will be printed in every 1 min \n");
}
fun2()
{
printf("It will be printed ...
8
votes
1answer
170 views
Performance drop with fputs after writing more than 2,5GB. Why?
Currently I'm working on a small program that reads large files and sorts them. After some benchmarking I stumbled upon a weird performance issue. When the input file got to large the writing of the ...
8
votes
2answers
292 views
What can change my floating point control word behind my back?
I have a 32 bit Windows application, written primarily in Delphi, which performs floating point numerical simulations using the 8087 FPU. I have recently added the ability to link in external Python ...
8
votes
4answers
197 views
How to synchronize access to a global variable with very frequent reads / very rare writes?
I’m working on debug logging infrastructure for a server application. Each logging point in source code specifies its level (CRITICAL, ERROR, etc.) among other parameters.
So in source code logging ...
8
votes
3answers
355 views
Why does GetCurrentProcess return -1?
In this small program, why does GetCurrentProcess() return -1?
int _tmain(int argc, _TCHAR* argv[]) {
HANDLE h = GetCurrentProcess(); // ret -1
printf("0x%x\n",(DWORD)h);
return 0;
}
...