This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
c11 [2019/07/19 18:29] rpjday [setjmp/longjmp] |
c11 [2019/08/05 13:31] (current) rpjday [Internal links] |
||
---|---|---|---|
Line 10: | Line 10: | ||
* [[https://en.cppreference.com/w/c|cppreference.com]] | * [[https://en.cppreference.com/w/c|cppreference.com]] | ||
- | ===== Figure out ===== | + | ===== Fedora packages ===== |
- | * What is "embedded C"? | + | * clang |
+ | * valgrind | ||
+ | * meld [for graphical diff] | ||
+ | * strace; ltrace | ||
+ | * splint | ||
+ | * pkg-config | ||
+ | * gdb; lldb | ||
+ | |||
+ | |||
+ | ===== To document ===== | ||
+ | |||
+ | * List the properties of "embedded C". | ||
===== Internal links ===== | ===== Internal links ===== | ||
* [[21st Century C]] | * [[21st Century C]] | ||
+ | * [[GCC extensions]] | ||
+ | * [[SEI CERT C Coding Standard]] | ||
===== DON'T CARE ===== | ===== DON'T CARE ===== | ||
Line 54: | Line 67: | ||
==== Preprocessor ==== | ==== Preprocessor ==== | ||
- | * ''include_next'' | + | * ''#define'' |
==== Threading ==== | ==== Threading ==== | ||
Line 63: | Line 76: | ||
==== Atomic objects ==== | ==== Atomic objects ==== | ||
+ | |||
+ | ==== GNU extensions ==== | ||
+ | |||
+ | * ''include_next'' | ||
===== Static analyzers ===== | ===== Static analyzers ===== | ||
Line 163: | Line 180: | ||
===== Threads ===== | ===== Threads ===== | ||
+ | |||
+ | * C11 threads versus POSIX threads (threads.h) | ||