CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: iQoder

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    690

    Understanding Redistribution + XML

    Okay I have 2 questions and again, firstly about distribution.

    Okay I come from a java background so c++ is a big change in terms of how it works, I have mainly been using libraries from STL but...
  2. Re: Advice on Directory Structure for Libraries

    So something like this:

    -<libraries-root>
    -------<lib1>
    -------------genericHeader.h
    -------------<windows>
    ---------------------winHeader.h
    ------------<linux>
    ---------------------linux.h
  3. Re: library loading and multiple implementations ?

    Ahh function pointers yeah makes sense, i notice the parentheses
  4. Re: library loading and multiple implementations ?

    Sorry not related to the original post but i'm quite new to C++, could you tell me whats happening in those lines specifically regarding the pointers?

    ISnakeAlgorithm* (*pFunc)(); <---- like this,...
  5. Advice on Directory Structure for Libraries

    Hey guys, I was hoping I could get some advices on directory structure for building dynamic libraries in both Windows and Linux. Not sure how I should set the directory structure.

    Basically I will...
  6. Replies
    3
    Views
    14,307

    Re: Understanding GetProcessTimes()

    well at the moment, I am just creating the base so I don't actually have the "section of code" to measure but for testing I padded it out with several for-loops decrementing from 1billion to 0.
    ...
  7. Replies
    3
    Views
    14,307

    Understanding GetProcessTimes()

    I'm trying to use GetProcessTImes() to get some rough idea on actual cpu time (not wall clock) from the windows api.

    I read that GetProcessTimes() is quite accurate and gives results back as user...
  8. Replies
    13
    Views
    2,197

    Re: Measuring Performance + Memory Usage

    Quick question again, does anyone know if it is possible to get information for individual threads inside a process?

    By information I mean how much memory and cpu load each thread is taking?
    ...
  9. Replies
    13
    Views
    2,197

    Re: Measuring Performance + Memory Usage

    Thanks for the replies guys.

    I never thought about overloading new/delete, i could look into that but you are right, without using platform specific calls I may not get a good measure.

    As far...
  10. Replies
    13
    Views
    2,197

    Re: Measuring Performance + Memory Usage

    Yeah sorry I meant dynamically allocated memory, this is the problem i'm having, if it was solely based on source code and classes that I own then I could just include sizeOf on each object on the...
  11. Replies
    13
    Views
    2,197

    Re: Measuring Performance + Memory Usage

    Thanks that does sound good then as a performance measure, for now i'll try to stick with timers, can't seem to think of any more accurate ways at the moment anyway.

    What about memory consumption?...
  12. Replies
    13
    Views
    2,197

    Measuring Performance + Memory Usage

    First of all i would like to say Hello to all here, I'm a new member of this forum and hopefully enjoy my stay :p

    Now on to the topic, I came here hoping to discuss with other coders on measuring...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured