What C++ static code analysis tool are there on Microsoft Windows, and which would you recommend?
Please state whether a particular tool relies on cygwin, and whether it cost money. One per post as per for voting up & down.
Similar Question: http://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-availabl...
Howdy Overflowites,
I'm looking to see if anyone knows of a higher-resolution "Sleep" API than can be achieved using the following code block:
::timeBeginPeriod( 1 );
::Sleep( 1 );
::timeEndPeriod( 1 );
I'm trying to accomplish some "process balancing" work, and after some experimenting, find I need finer grain control than the...
How would I drainstop one of the nodes in a MS NLB via command line and then get notified of its completion?
If there's no way to callback, is there an easy way to poll?
...
For my school work, I do a lot of switching computers (from labs to my laptop to the library). I'd kind of like to put this code under some kind of version control. Of course the problem is that I can't always install additional software on the computers I use. Is there any kind of version control system that I can keep on a thumb dri...
I'm using a build script that calls Wise to create some install files. The problem is that the Wise license only allows it to be run under one particular user account, which is not the same account that my build script will run under. I know Windows has the runas command but this won't work for an automated script as there is no way to e...
I've found the standard hashing function on VS2005 is painfully slow when trying to achieve high performance look ups. What are some good examples of fast and efficient hashing algorithms that should void most collisions?
...
Is there a way to emulate the unix cut command on windows XP, without resorting to cygwin or other non-standard windows capabilities?
Example: Use tasklist /v, find the specific task by the window title, then extract the PID from that list to pass to taskkill.
...
In any language really, im looking for a simple (very simple) way to control the position of a shortcut on the users desktop. I already make the assumption that Auto Arrange and Align to Grid are unchecked.
Ex: The program creates the shortcut to the desktop than places it at position (450,302) on the desktop.
I know how to create sho...
In an environment with multiple windows servers what is the best way to ensure patch compliance accross all systems?
Is there a simple tool (some sort of client/server app?) that allows reports to be generated showing the status of all the systems so any that aren't automatically patching themselves can be fixed without having to manu...
What is the best way to install Windows on a system without a Floppy drive, when RAID drivers are required for the installation?
I'm specifically trying to get Windows 2003r2 64bit onto a rack-mount server that can't have a floppy drive installed.
Do I need to go through slipstreaming an install disk (and if so, can that be done on a...
I need to write a function that generates an id that is unique for a given machine running a Windows OS.
Currently, I'm using WMI to query various hardware parameters and concatenate them together and hash them to derive the unique id. My question is, what are the suggested parameters I should use?
Currently, I'm using a combination of...
I'm facing a problem on Win32 API. I have a program that when it handles WM_PAINT messages it calls BeginPaint to clip the region and validate the update region, but the BeginPaint() is always generating a WM_NCPAINT message with the same updata region even if the touched part that need repaint it's only inside the client region.
Do an...
Hello,
i am looking for different ways to pause and resume programmatically a particular process via his process ID under Windows XP.
http://www.codeproject.com/KB/threads/pausep.aspx does it with SuspendThread / ResumeThread but warns about multithreaded programs and deadlocks problem.
PsSuspend looks ok : http://technet.microsoft.com...
How to wait for multiple child processes in Python on Windows, without active wait (polling)? Something like this almost works for me:
proc1 = subprocess.Popen(['python','mytest.py'])
proc2 = subprocess.Popen(['python','mytest.py'])
proc1.wait()
print "1 finished"
proc2.wait()
print "2 finished"
The problem is that when proc2 fini...
Is there a tool for Windows XP and Vista (built-in or otherwise ideally freeware/OSS) that can notify the user when the CPU is above a (configurable) threshold for some (configurable) duration?
I am particularly interested in a minimalist tool that fits the following bill and in order of importance (which a lot of the built-in Windows f...
Do you know of any compilers that only requires one or two clicks on the source code to compile? Having to configure it to do it doesn't count, nor does having to go to a terminal and write a word or two.
Extra points are given if you can give your own view as to why so few compilers have a gui included, or just a send to compiler listi...
I have a C extension module and it would be nice to distribute built binaries. Setuptools makes it easy to build extensions modules on OS X and GNU/Linux, since those OSs come with GCC, but I don't know how to do it in Windows.
Would I need to buy a copy of Visual Studio, or does Visual Studio Express work? Can I just use Cygwin or MinG...
I am sure I could get some great suggestions here since I am sure a large percentage of the StackOverflow user base could help me out here.
Like most dev's I have dual monitor setup at work, and a gazillion windows open at the time, and often need to ping them back and forward between the two.
Reaching for the mouse all the time, quite...
Does anybody know if there is a feasible way on Windows XP to programmatically create and configure a user account so that after logging in from the console (no terminal services) a specific app is launched and the user is "locked" to that app ?
The user should be prevented from doing anything else with the system (e.g.: no ctrl+alt+can...
I am looking for opensource Streaming server.
I have played around VLS/VLC before.
Have any of you used Darwin from Apple?
Are there any other options available?
...