Search:

Type: Posts; User: Xipher

Page 1 of 9 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    2,496

    Broadcast is LAN only and wouldn't reach clients...

    Broadcast is LAN only and wouldn't reach clients outside the local subnet, and would also require using a stateless protocol (UDP probably) which isn't guaranteed to reach it's destination.

    Also,...
  2. Thread: password

    by Xipher
    Replies
    11
    Views
    1,407

    You got that backwards by the way, the stack is...

    You got that backwards by the way, the stack is used for predifined variables in code, dynamicly allocated memory is in the heap. Both of those use the stack, it's just that one is pointing to memory...
  3. I cut out the irrelevant parts of the code(at...

    I cut out the irrelevant parts of the code(at least from what I can understand of your question). I have a question for you though, what are you working on something like this for if you don't even...
  4. Replies
    9
    Views
    9,501

    I actually don't know if that is possible, even...

    I actually don't know if that is possible, even with Cygwin. I think Cygwin would be the only chance, and glibc or other problems could quickly crop up.
  5. Replies
    12
    Views
    3,128

    And he is porting the program to Windows...

    And he is porting the program to Windows...
  6. Replies
    3
    Views
    1,210

    most of the time I have seen the version set in a...

    most of the time I have seen the version set in a configure.h file that simply #defines it. Its still edited by hand though some where. Normally though that is only done periodicly, not with every...
  7. Replies
    4
    Views
    2,612

    You also don't seem to be waiting for the child,...

    You also don't seem to be waiting for the child, look up the wait and wait_pid manpages.
    I don't exactly know what your having trouble understanding either, since you haven't told us what you mean...
  8. Replies
    2
    Views
    2,096

    Tell us why it needs to be suspended, might be...

    Tell us why it needs to be suspended, might be able to come up with a better answer then.
  9. Replies
    7
    Views
    4,979

    I believe that C++ dropped the errono setup, and...

    I believe that C++ dropped the errono setup, and instead uses exceptions for passing error information. Mind you if you use the C libraries, they will still use it.
  10. Thread: Networking...

    by Xipher
    Replies
    4
    Views
    1,960

    Actually, its probably the IRC network thats...

    Actually, its probably the IRC network thats blocking him. A number of them will only allow a very limited number of conections to the network at a time, some only allow 1 per IP.
  11. Replies
    3
    Views
    1,478

    Look at the red.

    Look at the red.
  12. Thread: Random function

    by Xipher
    Replies
    2
    Views
    3,300

    srand returns void, and is ONLY used for seeding...

    srand returns void, and is ONLY used for seeding the random number generator. use rand to get a random number, and only call srand once durring the execution of your program.
  13. Replies
    1
    Views
    2,689

    Umm, your not giving much information. What OS,...

    Umm, your not giving much information. What OS, Hardware, compiler?

    If its Linux (on x86,x86-64), Windows, or Mac OS X, its most likely a logical address, as the kernel maps the logical addresses...
  14. Replies
    5
    Views
    1,272

    thats another option, and will still tell you any...

    thats another option, and will still tell you any error information, but for larger projects, the method I mentioned above is much more common.
  15. Replies
    5
    Views
    1,272

    There are actually a couple ways to do it, the...

    There are actually a couple ways to do it, the one I am most familiar with is compiling each source file by separately, then linking them all (and any libraries) together at the end, such as

    gcc...
  16. Replies
    8
    Views
    1,502

    man waitpid hope that man page gives you some...

    man waitpid

    hope that man page gives you some more information
  17. Replies
    8
    Views
    1,502

    You should wait for every pid you created, which...

    You should wait for every pid you created, which shouldn't return until the spawned process has completed.
    Currently it doesn't look like your doing that, you are simply waiting for the last...
  18. Replies
    19
    Views
    4,417

    Ok, first, I want to say I didn't mean to bad...

    Ok, first, I want to say I didn't mean to bad mouth DirectX, but simply the "Gaming is a windows world, keep Linux out of it" mentality.
    Every game I linked to, uses DirectX directly for there...
  19. the freespace of a directory is the freespace of...

    the freespace of a directory is the freespace of the filesystem it sits on (normally) unless you use a quota system (something I haven't delt with myself yet).
  20. Replies
    19
    Views
    4,417

    First, let me give you a nice list Quake 4 Doom...

    First, let me give you a nice list
    Quake 4
    Doom 3
    Unreal Tournament 2004
    Unreal Tournament 2003
    Quake 3
    Unreal Tournament
    Quake 2
    Tribes 2
  21. Thread: Need quick help

    by Xipher
    Replies
    4
    Views
    1,094

    umm, 0/10 = 0, and is perfectly legal in...

    umm, 0/10 = 0, and is perfectly legal in mathimatics

    10/0 == ERRRRRRRRRRR
  22. Replies
    16
    Views
    2,904

    once you get into dynamic memory allocation, and...

    once you get into dynamic memory allocation, and the data structure concepts, it should make sense.
  23. Thread: Function

    by Xipher
    Replies
    5
    Views
    812

    No, but this might int random() { //......

    No, but this might


    int random()
    {
    //...
    }

    int main()
    {
  24. Replies
    2
    Views
    9,502

    Question, from the look of it I want to guess...

    Question, from the look of it I want to guess your using pthreads. If that is the case, then you use a global queue, which both threads will be able to access. If you this though, in order to keep...
  25. Replies
    7
    Views
    1,636

    thought about just using an if, else if, else...

    thought about just using an if, else if, else rather then three if statements?
Results 1 to 25 of 201
Page 1 of 9 1 2 3 4