summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/core.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-01-29 16:25:29 +0100
committerLennart Poettering <lennart@poettering.net>2009-01-29 16:25:29 +0100
commit746dc2ac19950d4eecc083929d6ed86443e3a112 (patch)
tree558d6fa8052ca28f3f6af7d8ccf7b5fbca7a7570 /src/pulsecore/core.h
parent4a06af6081c0fc081ad6ca136880a61ebe1c4e01 (diff)
get rid of nonsensical late initialization of namereg/scache and things
Diffstat (limited to 'src/pulsecore/core.h')
-rw-r--r--src/pulsecore/core.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/pulsecore/core.h b/src/pulsecore/core.h
index b349c6fc..2b8f819b 100644
--- a/src/pulsecore/core.h
+++ b/src/pulsecore/core.h
@@ -112,7 +112,7 @@ struct pa_core {
/* Some hashmaps for all sorts of entities */
pa_hashmap *namereg, *shared;
- /* The name of the default sink/source */
+ /* The default sink/source */
pa_source *default_source;
pa_sink *default_sink;
@@ -129,13 +129,12 @@ struct pa_core {
pa_mempool *mempool;
pa_silence_cache silence_cache;
- int exit_idle_time, scache_idle_time;
- pa_bool_t flat_volumes;
-
pa_time_event *exit_event;
-
pa_time_event *scache_auto_unload_event;
+ int exit_idle_time, scache_idle_time;
+
+ pa_bool_t flat_volumes:1;
pa_bool_t disallow_module_loading:1;
pa_bool_t disallow_exit:1;
pa_bool_t running_as_daemon:1;