Search:

Type: Posts; User: s1mon

Search: Search took 0.00 seconds.

  1. Thread: Stock Quotes

    by s1mon
    Replies
    4
    Views
    3,861

    Seconding thanks for this link!

    Seconding thanks for this link!
  2. Why? The signal handler should do as little as...

    Why? The signal handler should do as little as possible - for example, changing a global variable. Then it is your main code's job of checking for that variable. The op can just break out of the loop...
  3. Thread: g++ trace

    by s1mon
    Replies
    1
    Views
    2,572

    I assume you want to compile your app for...

    I assume you want to compile your app for debugging with gdb ?
  4. Replies
    9
    Views
    4,812

    Very good resource. If you are interested in...

    Very good resource.

    If you are interested in Linux, then I advise Understanding the Linux Kernel. Alongside xhi's recomendation of Linux Device Drivers, my knowledge of the Linux kernel has been...
  5. Thread: lseek error

    by s1mon
    Replies
    4
    Views
    4,603

    Try changing this to: if ((fd1 =...

    Try changing this to:



    if ((fd1 = open(argv[1], O_RDONLY)) == -1) {
    perror("problem with open in lchars: 1");
    exit(-1);
    }
    if ((fd2 =...
Results 1 to 5 of 5