0
votes
1answer
26 views
Create thread with specific privilege c++
hello
I have multi-thread application that I want to create a thread with different user privilege (for example : multi domain admin privilege).
but I can't find any Win32 API CreateThread to do …
2
votes
2answers
46 views
How can a template function ‘know’ the size of the array given as template argument?
Hi all,
In the C++ code below, the templated Check function gives an output that is not what I would like: it's 1 instead of 3. I suspect that K is mapped to int*, not to int[3] (is that a type?). I …
0
votes
3answers
31 views
c++ templated container scanner.
Hello, here's today's dilemma:
suppose I've
class A{
public:
virtual void doit() = 0;
}
then various subclasses of A, all implementing their good doit method. Now suppose I want to write a …
2
votes
3answers
59 views
STL iterator - why is the code analysis tool complaining?
I'm checking the results from the static code analysis tool Klocwork.
It complains about the following code:
293 for( my_vector_typedef::iterator it( start_pos ); it != end_pos ; ++it ){
294 …
2
votes
5answers
95 views
How do I convert a value from host byte order to little endian?
I need to convert a short value from the host byte order to little endian. If the target was big endian, I could use the htons() function, but alas - it's not.
I guess I could do:
swap(htons(val))
…
0
votes
3answers
85 views
Staying away from virtual memory in Windows\C++
I'm writing a performance critical application where its essential to store as much data as possible in the physical memory before dumping to disc.
I can use ::GlobalMemoryStatusEx(...) and …
0
votes
3answers
50 views
Strange Behaviour Class Objects Inside Union.
Hi I wanted know the reasons of the following code
void main()
{
class test
{
public:
test(){}
int k;
};
class test1
{
public:
test(){};
…
0
votes
1answer
16 views
How to implement a video widget in Qt that builds upon GStreamer?
I want to use Qt to create a simple GUI application that can play a local video file. I could use Phonon which does all the work behind the scenes, but I need to have a little more control. I have …
1
vote
2answers
47 views
Loading text from a file into a 2-dimensional array (C++)
I'm making a game and I have stored the map data in a 2-dimensional array of size [34][10]. Originally I generated the map using a simple function to fill up the array and saved this data to a file …
2
votes
3answers
95 views
Threadsafe logging
Hi All!
I want to implement a simple class for logging from multiple threads. The idea there is, that each object that wants to log stuff, receives an ostream-object that it can write messages to …
1
vote
5answers
106 views
Is there any heap compaction in C++?
I have a notion that C++ runtime doesn't do any heap compaction which means that the address of an object created on heap never changes. I want to confirm if this is true and also if it is true for …
0
votes
2answers
30 views
Simple Distributed Computation (similar to summation) (in C++)
I'm looking for a framework / approach to do message passing distributed computation in C++.
I've currently got an iterative, single-threaded algorithm that incrementally updates some data model. …
0
votes
2answers
18 views
Statically linking against library built with different version of C Runtime Library, ok or bad?
Consider this scenario:
An application links to 3rd party library A.
A is built using MSVC 2008 and is statically linking (ie. built with /MT) to the C Runtime Library v9.0.
The application is built …
1
vote
4answers
51 views
Can I use std::basic_string with things that aren’t character types?
I've got a loop in my code that uses std::basic_string<HANDLE>, and then waits on it like this:
DWORD dwWaitResult = WaitForMultipleObjects((DWORD)handles.size(),
…
0
votes
2answers
34 views
how to design CPM algorithm ?
Hi
how to represent a graph with list data structure i have three class (Graph, Node, Edge) and would like to find the critical path in graph.
how to calculate
ES : Earliest Start
EC : Earliest …
