Search:

Type: Posts; User: jeffbg123

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,248

    Why is this a seg fault?

    int CalcIt(char* a, int m)
    {
    char* aCopy = malloc(sizeof(char*)*1000*m);
    strcpy(aCopy,a);

    return 0;
    }
    }

    This is part of a bigger program and I am only getting a seg fault here on large...
  2. Replies
    9
    Views
    8,745

    If I use the while loop, and I am running a lot...

    If I use the while loop, and I am running a lot of stuff on callbacks, with this hurt performance?
  3. Replies
    9
    Views
    8,745

    All callbacks are never completed though. The...

    All callbacks are never completed though. The connection to the price feed remains open until I close it. I never want it to stop listening for prices.

    There is not really any documentation for...
  4. Replies
    9
    Views
    8,745

    Wait for callback without quitting

    Hey,

    I am writing a program that is reading stock prices through a callback function and then doing something when I get prices. Basically I am subscribing to the stock symbols in my main function...
Results 1 to 4 of 4