Search:

Type: Posts; User: Smartiepants586

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    2,066

    Haha, that came out wrong. It means instead of...

    Haha, that came out wrong.

    It means instead of

    1
    2
    3
    4
    5
    Long Pause (longer than usleep)
  2. Replies
    11
    Views
    2,066

    Examing it more carefully and experimenting with...

    Examing it more carefully and experimenting with the the value of the usleep, I have found that changing the value changes the amount of times it runs through before a longer pause
  3. Replies
    11
    Views
    2,066

    It is still doing the same thing, I think it may...

    It is still doing the same thing, I think it may have something to do with the scheduling on the unix box, since things are being run in round robin format, could it have to do with the shares, it...
  4. Replies
    11
    Views
    2,066

    #include #include ...

    #include <unistd.h>
    #include <stdio.h>

    #define MAX 250

    int main()
    {
    int a=0;
    while(a<=MAX)
    {printf("2\n");
  5. Replies
    11
    Views
    2,066

    Program runs choppy

    I have a piece of code which is just a simple printf statement followed by a usleep command. Then it is just looped.

    I am running this on solaris 8, and what happens is a bunch of output will...
  6. Replies
    3
    Views
    1,686

    Unix/gcc

    Unix/gcc
  7. Replies
    3
    Views
    1,686

    Avoiding Page File

    Is there any way to specify that you want something loaded to memory and not to the page file?

    I have an array which should easily fit in memory, 600mb on 2056, but it insists on loading it to the...
  8. Yeah its pretty much like that.

    Yeah its pretty much like that.
  9. I would rather not falsify it, but use system...

    I would rather not falsify it, but use system resources doing useless tasks.

    It would be in order to test how an app performs with limited resources, ie does it hang, crash, or just degrade in...
  10. How can I load a cpu a certain percentage?

    I have to simulate load on a computer. Ideally what I would like to do is be able to manipulate the load on the computer, ie load it to like 20% per instance running. Or be able to vary it within...
Results 1 to 10 of 10