File: tls.c

package info (click to toggle)
python-pyelftools 0.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 68,964 kB
  • sloc: python: 15,903; ansic: 298; asm: 86; makefile: 24; cpp: 18; sh: 4
file content (8 lines) | stat: -rw-r--r-- 149 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
// Compile into tls.elf using:
// $ gcc -m32 -o tls.elf tls.c
// For tls64.elf, use:
// $ gcc -m64 -o tls64.elf tls.c

__thread int i;

int main(){}