Search:

Type: Posts; User: awoodland

Search: Search took 0.01 seconds.

  1. Thread: kernel mod

    by awoodland
    Replies
    2
    Views
    1,590

    ssh [email protected] insmod mymodule. ^D or I...

    ssh [email protected]
    insmod mymodule.
    ^D

    or I suppose you could write something that lives in the kernel and listens to specific port for some kind of packet and then calls the module loader, but...
  2. Replies
    12
    Views
    3,714

    In my opinion the huge advantage to openGL lies...

    In my opinion the huge advantage to openGL lies within it's name - 'open' openGl libraries exist for virtualy every platform known to mankind. Use direct3d and it's windows or nothing... openGL is...
  3. Replies
    8
    Views
    2,194

    get the source code and write an openGL renderer...

    get the source code and write an openGL renderer for it :-) Now THAT's porting
  4. Replies
    7
    Views
    3,937

    Looks like it can't find the symbols unless you...

    Looks like it can't find the symbols unless you use -lstdc++ to me. Could just be my version of gcc

    Alan
  5. Replies
    4
    Views
    19,817

    To make this work on Solaris you might also find...

    To make this work on Solaris you might also find you need the following:



    newt.c_lflag &= ~(ICANON|ECHO|IEXTEN);
    /* also set TIME to 0 and MIN to 1 (getc will block until there
    is...
  6. Replies
    38
    Views
    8,283

    2048x1536@75hz :-) I'm pretty sure thats the max...

    2048x1536@75hz :-) I'm pretty sure thats the max my graphics card will do. I love this montior though. Means I can fit lots of code and design specs and emails on the screen simultaniously which...
  7. Replies
    4
    Views
    11,043

    I had always assumed that ANSI C was just the...

    I had always assumed that ANSI C was just the grammar for the C language itself + the standard library, and that if I called a function that happened to be not part of the ANSI standard C library...
  8. Replies
    7
    Views
    3,937

    gcc will happily compile c++ code for you, you do...

    gcc will happily compile c++ code for you, you do however need to tell it to link against the standard c++ library when it calls the linker. Ie:

    gcc -lstdc++ myfile.cc -o myfile

    Alan
  9. Replies
    4
    Views
    11,043

    sigaction() and ANSI C

    I'm tearing my hair out with a problem at the moment. I've managed to reduce it to a very simple example below:



    #include <signal.h>

    struct sigaction action;


    if you try compiling this...
Results 1 to 9 of 9