Search:

Type: Posts; User: clancyj4

Search: Search took 0.01 seconds.

  1. To illustrate the difference: Compile time...

    To illustrate the difference:

    Compile time allocation:

    static char fred[128];

    Run time equivalent:

    char * fred;
    fred = malloc(128);
  2. Normally, I wouldn't respond to this type of...

    Normally, I wouldn't respond to this type of rant, but for the last time:

    You are not even remotely special. True - never thought any different.
    We've seen your kind a hundred times. Err -...
  3. Stupid!

    And it is.

    I made two stupid mistakes:

    1) I got my globals wrong and defined them as static in main.c rather than in gui/guiglb.c with extern definitions in gui/guiglb.h. How I made that...
  4. True, the compiler bug thought was just clutching...

    True, the compiler bug thought was just clutching at straws.

    I did try to replicate the problem in a simpler form, but it worked as expected. Maybe it is too simple, so I'll try with a more...
  5. Can anyone tell me what the complaints procedure...

    Can anyone tell me what the complaints procedure is against this sort of abuse? Do the members here really want to be remembered for this type of behaviour?
  6. Ah, abuse now. Look at my last post. Really,...

    Ah, abuse now. Look at my last post.

    Really, if you can't say anything constructive, please STFU.
  7. Nope, clang does the same. It must be me...

    Nope, clang does the same. It must be me...
  8. Oh, come on! The code and results are exactly...

    Oh, come on!

    The code and results are exactly as I displayed them. Saying the results are impossible isn't helpful. They are what they are - I haven't made them up.

    I'm beginning to wonder if...
  9. No, I meant what I said - AFTER the assignment...

    No, I meant what I said - AFTER the assignment loop, in other words after the closing brace.
  10. #define NFLAGS 8 The breakpoint is just after...

    #define NFLAGS 8
    The breakpoint is just after the assignment loop.
  11. How do I assign an array to a set of GtkWidget * in C?

    I'm not inexperienced in C, but this one has me baffled. It involves GTK+3.0.

    The relevant bits of code are:


    char FlagEnt[NFLAGS][8] = ...

    static GtkWidget * flentry[NFLAGS];
    static...
Results 1 to 11 of 11