Search:

Type: Posts; User: lordmule

Search: Search took 0.00 seconds.

  1. Replies
    12
    Views
    3,891

    Wow. I can see why you are called grumpy. -...

    Wow. I can see why you are called grumpy.
    - Realtime has no strict meaning. It is context dependent. (Japanese speaking vs English? lol)
    - I have already understood that trade off exists. Nobody's...
  2. Replies
    12
    Views
    3,891

    This is true. The border of using C++ compiler...

    This is true. The border of using C++ compiler for mostly C code had already been crossed anyways :)
  3. Replies
    12
    Views
    3,891

    Is this obvious? In ideal circumstances, keeping...

    Is this obvious? In ideal circumstances, keeping threads suspended and waiting for signal incurs zero computation cost. In addition, the time to activate that thread will have zero delay. If it is...
  4. Replies
    12
    Views
    3,891

    Nothing wrong with conflict in what is realtime....

    Nothing wrong with conflict in what is realtime. From my view, 120Hz is needed for crisp refresh rate when using stereo vision. You could say this is soft-realtime for which the deadline missed is...
  5. Replies
    12
    Views
    3,891

    Firstly, I realise that my question is ill-posed....

    Firstly, I realise that my question is ill-posed. I am more interested in drawing upon others experiences, methodology or approach. I am not looking for a magic answer, just your view or personal...
  6. Replies
    12
    Views
    3,891

    Spawn on fly vs pre allocate threads

    For a realtime application, where performance matters. What is the general view of getting better performance. Using threads spawned on the fly (pthread_create), or preallocate group of threads with...
  7. Replies
    41
    Views
    10,771

    May he continue to write the universe in C in the...

    May he continue to write the universe in C in the after life. Thank you for the language, it is so wonderful.
  8. Replies
    5
    Views
    2,802

    excellent. thanks for that.

    excellent. thanks for that.
  9. Replies
    5
    Views
    2,802

    You may have overlooked my question. I am...

    You may have overlooked my question. I am referring to "unsigned" alone...What is it's intended meaning. if "unsigned" converts to "unsigned int" then which C syntax does this conform to?
  10. Replies
    5
    Views
    2,802

    C syntax: unsigned myvar;

    Hi there,
    just a quick question, what happens to variables of this kind in C compiler, defaults to system int?

    I am just adapting the zlib compression example zpipe.c:


    int ret, flush;...
  11. like everyone is saying here. There are specific...

    like everyone is saying here. There are specific areas of knowledge of mathematics to know if you want to have a say. For example, if you dont understand all the mathematics involved in 3D computer...
  12. Replies
    1
    Views
    3,083

    parsing C code

    Hi everyone,
    I would like to know if there is any way to parse C code so I can automatically generate template code (such as header files). For example I would like to generate enums for each...
  13. Replies
    41
    Views
    22,139

    Actually, there was another post just now, with a...

    Actually, there was another post just now, with a similar problem, so with no life of mine i made a sample for you:



    typedef int array2d [5][5];

    array2d arr;

    array2d* get_arr()
    {
  14. Replies
    41
    Views
    22,139

    I'm guessing you want to use something like: ...

    I'm guessing you want to use something like:

    array[1][3] = 40;

    I may not know how to achieve that, but you could instead. workaround is simply using int* as the return type/declaration type....
  15. Replies
    1
    Views
    2,917

    Extending C program to support modules

    Hi everyone,
    I hope you don't scrutinise me too much based on my post count, but anyway. I have been trying to find a method to use a module like system in my software. Its using modified images...
Results 1 to 15 of 15