0
votes
1answer
39 views

__attribute__((OS_main)) results in strange behaviour in AVR

I don't know how to precisely described the error I am seeing. If I set up my port register in main() everything works as intended. However if I try to do it in a function, the program halts. main.c: ...
0
votes
2answers
39 views

Data type of command line args

I'm struggling to convert an executable program into a function that I can call from within my main routine. As it currently is written, the executable looks like this: int main(int argc, char* ...
0
votes
1answer
40 views

handing lists of variable names in bison/yacc

I'm having trouble figuring out how to write a parser with bison. In order to insert variables into my symbol table so that I can do some type-checking and other nonsense I need the variable name and ...
4
votes
1answer
71 views

init-declarator-list and the GNU GCC attribute grammar

I am revamping an inhouse C language bison/flex-based parser, amongst others introducing proper __ attribute__ support. Since I cannot find any official BNF-style grammar which describes GNU GCC __ ...
2
votes
3answers
146 views

Posix Threads attributes & detach state

Today I came across POSIX thread attributes, they are a little weird work with, when you are using them for the first time. I am a little confused about pthread_attr_setdetachstate, which states that: ...
2
votes
4answers
84 views

Is there any way to mark up a c function or obj-c method to identify it at runtime?

I'm looking for something similar to attributes in Java, to use in an objective-c environment. Suppose I have an implementation file with a bunch of methods defined. Is there any way I can mark ...
4
votes
3answers
548 views

Is __attribute__ ((__packed__)) ignored on a typedef declaration?

Though __attribute__ ((aligned)) works well with the typedef declaration such as : typedef struct __attribute__((__aligned__(8))) A { xxx ip ; xxx udp ; xxx ports ; } table ; I ...
2
votes
1answer
38 views

What is _attribute_ or things like this in C?

I often see something like attribute in error messages. What is this? Are there any similar things like this attribute? Can anyone give me a detailed explanation?
3
votes
2answers
118 views

Define compiler warning/errors for library functions

I am wondering if it is possible to generate compiler warnings or errors for specific library functions. For example, I work all the time on multithreaded programs and I would like to get a compiler ...
0
votes
1answer
219 views

How to change Linux file attributes

I am working in C not in CPP and want to change the attributes of a executable file to hidden, read only, executable. I also want to change file's permission using my C-code. How can I do that? ...
4
votes
1answer
2k views

Effects of __attribute__((packed)) on nested array of structures?

The Problem I'm working on sending a raw structure over a network to a known program on the other side, but have to worry about the silently introduced memory used for aligning the structures (other ...
2
votes
2answers
1k views

GCC Bitwise Attribute

What does GCC's __attribute__(bitwise) mean? The attribute isn't mentioned in the info pages of GCC-4.6. I stubled upon it in the file open-iscsi-2.0.871/include/iscsi_proto.h in source the project ...
2
votes
2answers
160 views

What is replacement of __attribute__ in ISO C standard?

What is the replacement of __attribute__ in ISO C standard? I want to port my software which is compiler independent.
2
votes
2answers
2k views

Aligned vs. Packed attributes

I am working on firmware for a 16-bit PIC and writing in C (Microchip C30 compiler). My device receives a long list of bytes from an external device, and then I am trying to copy those bytes into a ...
1
vote
1answer
522 views

what should be x in __attribute__ ((aligned(x)))

I get it that variable alignment is needed for efficiency. What I do not get is how to determine the proper size of the alignment. From my understanding aligned value should always be set to the word ...
5
votes
1answer
300 views

gcc attributes for init-on-first-use functions

I've been using the gcc const and pure attributes for functions which return a pointer to "constant" data that's allocated and initialized on the first use, i.e. where the function will return the ...
5
votes
2answers
647 views

More than one __attribute__ in C with gcc

Can you add more than one attribute to an identifier in C with gcc? Here is what I have now. I left out the include statements because they get scramble in the post. If there is a way to add two, ...
2
votes
3answers
249 views

Is there a list of minimum gcc version supporting each __attribute__?

The official documentation here only lists the minimum required version for a very small number of attributes: http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html Is there a complete list of ...
0
votes
1answer
540 views

Compiler error when changing deprecated void _init() to use __attribute((constructor))

I decided it would be a fun side project to do some work on tsocks, since it hasn't seen any updates in 8 years. It's hosted here on GitHub. I only made cosmetic changes to the code so far, but now ...
1
vote
1answer
815 views

sort a struct array by attribute value

Ive got a task in C to sort a struct by using qsort struct user { enum SEX{m, f} sex; char name[32]; char phonenr[32]; }; typedef struct user User; the users will be stored in a array ...
10
votes
1answer
2k views

Why doesn't __attribute__((constructor)) work in a static library?

In the following example, the program should print "foo called": // foo.c #include <stdio.h> __attribute__((constructor)) void foo() { printf("foo called\n"); } // main.c int main() { ...