summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/pthread/defs.awk
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-31 09:45:44 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-31 09:45:44 +0200
commit5c49e11c01b0baf4c2c54259e5ec06274251f0fa (patch)
tree6864e9b95f933ad22ae9a419464a832346df67fa /libpthread/nptl/sysdeps/pthread/defs.awk
parent204c7849029d90e5e3486670a6a07a76f949afd6 (diff)
NPTL: Fix CTOR_DTOR
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread/defs.awk')
-rw-r--r--libpthread/nptl/sysdeps/pthread/defs.awk24
1 files changed, 0 insertions, 24 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/defs.awk b/libpthread/nptl/sysdeps/pthread/defs.awk
deleted file mode 100644
index d41d57bd7..000000000
--- a/libpthread/nptl/sysdeps/pthread/defs.awk
+++ /dev/null
@@ -1,24 +0,0 @@
-/^[ ]*\.endp/ { need_endp = 1 }
-/^[ ]*\.end/ { need_end = 1 }
-/^[ ]*\.align/ { if($2 > max) max = $2; }
-
-END {
- if(need_endp)
- {
- print "#define END_INIT .endp _init";
- print "#define END_FINI .endp _fini";
- } else if(need_end)
- {
- print "#define END_INIT .end _init";
- print "#define END_FINI .end _fini";
- }
- else
- {
- print "#define END_INIT";
- print "#define END_FINI";
- }
- if(max)
- print "#define ALIGN .align", max;
- else
- print "#define ALIGN";
-}