File: pspinlock.c

package info (click to toggle)
uclibc 0.9.30.2-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 25,332 kB
  • ctags: 48,168
  • sloc: ansic: 214,403; asm: 22,608; cpp: 4,080; makefile: 2,962; pascal: 693; sh: 661; perl: 652; yacc: 588; lex: 356; awk: 24
file content (14 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <features.h>
#include <bits/wordsize.h>

#if __WORDSIZE == 32

# if defined(__CONFIG_SPARC_V9B__)
#  include "sparc32/sparcv9b/pspinlock.c"
# else
#  include "sparc32/pspinlock.c"
# endif

#else
# include "sparc64/pspinlock.c"
#endif