Search:

Type: Posts; User: DV64h

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,697

    Hi daved: This is what i do: (Couldnt...

    Hi daved:

    This is what i do: (Couldnt copy/paste the original code but the structure is exactly the same


    class CShared{
    void doSomething() { }
    };

    class CFoo{
  2. Replies
    5
    Views
    1,697

    Static member func clone?

    Hi, i ran into a really weird problem:

    Take the following code:


    class CExample{
    static CMemoryBuffer<CPlayerDescription>* Allocator()
    {
    static...
  3. Replies
    0
    Views
    2,913

    UDP+IOCP question

    Hi,
    I'm creating a gamescanner using UDP to scan the games with the I/O completion port.

    However, me not beeing a winsock expert, i get some problems with my application and i'm not sure if i do...
  4. Thread: labeled breaks

    by DV64h
    Replies
    7
    Views
    1,201

    rycoons answer is the only clean solution to...

    rycoons answer is the only clean solution to this. labeled breaks are just not something for c++. break just indicates to quit the loop, where java does much of the memory management for you, in c++...
  5. Thread: Best approach

    by DV64h
    Replies
    6
    Views
    2,667

    Thanks, that was exactly the answer that i needed.

    Thanks, that was exactly the answer that i needed.
  6. Thread: Best approach

    by DV64h
    Replies
    6
    Views
    2,667

    probably i explained it wrong, the app aint a...

    probably i explained it wrong, the app aint a server. it is a serverscanner, what it does, it retrieves serverlists of many games and keeps scanning them as fast as possible.so how does the scanning...
  7. Thread: Best approach

    by DV64h
    Replies
    6
    Views
    2,667

    Best approach

    Hi,

    I'm creating a application witch is totally based on winsock. anyway, the thing is that he must have like 200 transactions with remote servers at the same time, you can compare it with a...
  8. Thread: Null object.

    by DV64h
    Replies
    7
    Views
    1,345

    there is one other way, you could create a smart...

    there is one other way, you could create a smart pointer with a template param to your specific class and saving a pointer internally. that way you can overload for example the -> operator and let it...
  9. Replies
    11
    Views
    2,048

    yes but creating a totally new one? why not just...

    yes but creating a totally new one? why not just derive from the existing STL class and add your own methods? or you could just build a wrapper class around the STL list class with some extra...
  10. Replies
    2
    Views
    1,600

    Windows not using L2 cache memory

    Hi, i just found out that windows xp isnt using the L2 cache memory. (its default on 0 @ HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\SecondLevelDataCache
    ...
  11. Deque iterator not dereferencable

    Hi, again i'm standing with a bit of a weird situation.
    I''ve a queue holding some data and sometimes after a few minuts i get the error. deque iterator not dereferencable and the queue size is 0...
  12. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    pff sorry to say this for the admins but, i seem...

    pff sorry to say this for the admins but, i seem to find a lot of flaming, i can understand that you can get really irritating because of some beginners ( got some experiance myself like someone...
  13. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    hence jafet, i've got to learn to. coming bit by...

    hence jafet, i've got to learn to. coming bit by bit but still. anyway, the input is the content of a UDP packet wich is widely secured. maybe 20 procent of the buffer will be constantly filled. and...
  14. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    yes your right, got confused with the ESI

    yes your right, got confused with the ESI
  15. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    esp is instruction pointer right? it points to...

    esp is instruction pointer right? it points to the next instruction to execute, and yes with the data i get acces violations
  16. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    runtime errors, sometimes the esp just points to...

    runtime errors, sometimes the esp just points to a random adress, or some data is totally corrupted and the other threads dont even share the same object.
    and with the debugger, it dont just point...
  17. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    well, lets just say that is the point. why in ***...

    well, lets just say that is the point. why in *** name does he skips to the catch blocks and totally ignores it. hence why is the jump to the catch block anyway? there aint a error or what. and...
  18. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    thats the thing, i could use standard defined...

    thats the thing, i could use standard defined ones but that would be much slower, this is a strlen and strcpy in one and the whole application is based on speed.
    Personally, i believe this is a...
  19. Thread: Weird errors

    by DV64h
    Replies
    23
    Views
    2,475

    Weird errors

    Hi, i'm building a application and at a certain point, i get the weirdest runtime errors:

    for example:



    try{
    bufptr += my_strcpy(target->ServerName, bufptr);
    bufptr +=...
  20. Replies
    10
    Views
    3,376

    thanks, but llu just works fine :)

    thanks, but llu just works fine :)
  21. Replies
    10
    Views
    3,376

    thanks for the links, i couldnt find any...

    thanks for the links, i couldnt find any recourses about llu. and i knew about the stringstream. the problem is that my function is accesed by 40 threads at the same time all in a loop and they just...
  22. Replies
    10
    Views
    3,376

    unsigned long long to string

    Hi, i was looking for a function to convert a unsigned long long (64 bits) to a char string. i rather not use stringstreams for the speed and i was hoping there would be a already defined function in...
  23. Replies
    26
    Views
    3,129

    case 'a': blabla?

    case 'a': blabla?
  24. Replies
    2
    Views
    1,320

    thanks, i can work my ways with that :)

    thanks, i can work my ways with that :)
  25. Replies
    2
    Views
    1,320

    How to let a client pc response to a query

    Well, i know the title isnt what i mean but thats the problem. i know what i want, but i dont know how its called. else i could just do some googling....
    anyway, what i want is a website to send a...
Results 1 to 25 of 31
Page 1 of 2 1 2