mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-22 08:56:52 -05:00
merge glitch-free branch back into trunk
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2445 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
91f092eadc
commit
045c1d602d
189 changed files with 12559 additions and 4959 deletions
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
#include <pulsecore/log.h>
|
||||
#include <pulsecore/macro.h>
|
||||
#include <pulsecore/core-util.h>
|
||||
#include <pulse/sample.h>
|
||||
|
||||
#ifdef HAVE_SYS_RESOURCE_H
|
||||
|
|
@ -65,7 +66,8 @@ typedef struct pa_daemon_conf {
|
|||
system_instance,
|
||||
no_cpu_limit,
|
||||
disable_shm,
|
||||
disable_remixing;
|
||||
disable_remixing,
|
||||
load_default_script_file;
|
||||
int exit_idle_time,
|
||||
module_idle_time,
|
||||
scache_idle_time,
|
||||
|
|
@ -79,19 +81,31 @@ typedef struct pa_daemon_conf {
|
|||
char *config_file;
|
||||
|
||||
#ifdef HAVE_SYS_RESOURCE_H
|
||||
pa_rlimit rlimit_as, rlimit_core, rlimit_data, rlimit_fsize, rlimit_nofile, rlimit_stack;
|
||||
pa_rlimit rlimit_fsize, rlimit_data, rlimit_stack, rlimit_core, rlimit_rss, rlimit_nofile, rlimit_as;
|
||||
#ifdef RLIMIT_NPROC
|
||||
pa_rlimit rlimit_nproc;
|
||||
#endif
|
||||
#ifdef RLIMIT_MEMLOCK
|
||||
pa_rlimit rlimit_memlock;
|
||||
#endif
|
||||
#ifdef RLIMIT_LOCKS
|
||||
pa_rlimit rlimit_locks;
|
||||
#endif
|
||||
#ifdef RLIMIT_SIGPENDING
|
||||
pa_rlimit rlimit_sigpending;
|
||||
#endif
|
||||
#ifdef RLIMIT_MSGQUEUE
|
||||
pa_rlimit rlimit_msgqueue;
|
||||
#endif
|
||||
#ifdef RLIMIT_NICE
|
||||
pa_rlimit rlimit_nice;
|
||||
#endif
|
||||
#ifdef RLIMIT_RTPRIO
|
||||
pa_rlimit rlimit_rtprio;
|
||||
#endif
|
||||
#ifdef RLIMIT_RTTIME
|
||||
pa_rlimit rlimit_rttime;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
unsigned default_n_fragments, default_fragment_size_msec;
|
||||
|
|
@ -121,4 +135,7 @@ int pa_daemon_conf_set_log_target(pa_daemon_conf *c, const char *string);
|
|||
int pa_daemon_conf_set_log_level(pa_daemon_conf *c, const char *string);
|
||||
int pa_daemon_conf_set_resample_method(pa_daemon_conf *c, const char *string);
|
||||
|
||||
const char *pa_daemon_conf_get_default_script_file(pa_daemon_conf *c);
|
||||
FILE *pa_daemon_conf_open_default_script_file(pa_daemon_conf *c);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue