summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-04-21 23:02:17 +0200
committerLennart Poettering <lennart@poettering.net>2009-04-21 23:02:17 +0200
commit26383c6f1420ab80e8e7efcecbd75f70dfa96b55 (patch)
treef433d4f738732f52d9f811ba809b598bdd894fb5 /src/pulsecore
parent67efc76abc1a7362b59cec8b03323a171de3d9b4 (diff)
memtrap: add a bit of documentation for memtrap
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/memtrap.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pulsecore/memtrap.h b/src/pulsecore/memtrap.h
index 6cad296c..f7da7083 100644
--- a/src/pulsecore/memtrap.h
+++ b/src/pulsecore/memtrap.h
@@ -26,6 +26,17 @@
#include <pulsecore/macro.h>
+/* This subsystem will trap SIGBUS on specific memory regions. The
+ * regions will be remapped to anonymous memory (i.e. writable NUL
+ * bytes) on SIGBUS, so that execution of the main program can
+ * continue though with memory having changed beneath its hands. With
+ * pa_memtrap_is_good() it is possible to query if a memory region is
+ * still 'good' i.e. no SIGBUS has happened yet for it.
+ *
+ * Intended usage is to handle memory mapped in which is controlled by
+ * other processes that might execute ftruncate() or when mapping in
+ * hardware resources that might get invalidated when unplugged. */
+
typedef struct pa_memtrap pa_memtrap;
pa_memtrap* pa_memtrap_add(const void *start, size_t size);