summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2008-03-11 00:00:37 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2008-03-11 00:00:37 +0100
commit8759e68de2e2b4ce1793d36d668359eb80278c2c (patch)
treed30cd455f52e37bea10e8ac4cc296fc8d85e7a7c /include
parent4dba16c692bbe50ae22e3d678a01d054c4e52bb4 (diff)
downloadbarebox-8759e68de2e2b4ce1793d36d668359eb80278c2c.tar.gz
barebox-8759e68de2e2b4ce1793d36d668359eb80278c2c.tar.xz
Add the possibility to have an architecture specific ctrlc() function.
This allows us to return immediately in ctrlc() on sandbox and thus not slow down network througput.
Diffstat (limited to 'include')
-rw-r--r--include/asm-sandbox/common.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/asm-sandbox/common.h b/include/asm-sandbox/common.h
index da84fa5f6b..9b8bd2d94c 100644
--- a/include/asm-sandbox/common.h
+++ b/include/asm-sandbox/common.h
@@ -1 +1,6 @@
-/* nothing */
+#ifndef ASM_COMMON_H
+#define ASM_COMMON_H
+
+#define ARCH_HAS_CTRLC
+
+#endif /* ASM_COMMON_H */