pulseaudio/src/pulsecore
John Paul Adrian Glaubitz 1df21e6ab6 core-util: Use _SC_NPROCESSORS_ONLN instead of _SC_NPROCESSORS_CONF
pa_ncpu() is supposed to report the number of processors available on
the system. For that, it currently calls sysconf(_SC_NPROCESSORS_CONF).
However, since the operating system can disable individual processors,
we should call sysconf(_SC_NPROCESSORS_ONLN) to determine the number
of processors currently available [1]. Consequently, the once-test will
fail since pthread_setaffinity_np() is called with CPUs that are
currently not available.

It might also be advisable to change the code in the future to use CPU
sets on Linux as even the suggested change is not 100% safe but at least
it improves over the existing code. If PulseAudio was to be run in a CPU
set [2], the number of processors available to PulseAudio could be even
less than the number of CPUs currently online (_SC_NPROCESSORS_CONF).

[1] https://www.gnu.org/software/libc/manual/html_node/Processor-Resources.html
[2] http://man7.org/linux/man-pages/man7/cpuset.7.html

BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=96809
Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
2016-08-15 17:23:36 +03:00
..
ffmpeg update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
filter pulsecore: Reference count mempools 2016-04-02 05:36:52 +02:00
resampler resampler: Fix a memory leak in pa_resampler_ffmpeg_init() 2016-05-13 14:22:47 +05:30
arpa-inet.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
arpa-inet.h Whitespace cleanup: Remove all multiple newlines 2013-06-24 16:56:24 +03:00
asyncmsgq.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
asyncmsgq.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
asyncq.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
asyncq.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
atomic.h pulsecore: Fix incorrect architecture mapping on sparc64. 2016-06-22 12:55:55 +05:30
aupdate.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
aupdate.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
auth-cookie.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
auth-cookie.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
authkey.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
authkey.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
avahi-wrap.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
avahi-wrap.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
bitset.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
bitset.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
card.c card: remove pa_card_new_data.active_profile 2016-06-28 16:55:42 +03:00
card.h card: remove pa_card_new_data.active_profile 2016-06-28 16:55:42 +03:00
cli-command.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cli-command.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cli-text.c Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
cli-text.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cli.c Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
cli.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
client.c client: Use pa_xnew0 when creating a client 2015-09-28 14:36:23 +02:00
client.h typedefs.h: Move some typedefs to a separate file 2015-12-14 05:01:53 +02:00
conf-parser.c conf-parser: add support for .d directories 2015-12-14 13:45:39 +01:00
conf-parser.h conf-parser: add support for .d directories 2015-12-14 13:45:39 +01:00
core-error.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-error.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-format.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-format.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-rtclock.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-rtclock.h core-rtclock: Add missing declaration of struct timespec 2015-12-08 08:50:10 +05:30
core-scache.c core, core-scache: Fire hooks for new, changed and removed events 2015-05-21 10:06:11 +02:00
core-scache.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-subscribe.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-subscribe.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
core-util.c core-util: Use _SC_NPROCESSORS_ONLN instead of _SC_NPROCESSORS_CONF 2016-08-15 17:23:36 +03:00
core-util.h core-util: Improve pa_replace() behaviour 2016-06-22 12:55:55 +05:30
core.c Disable LFE remixing by default 2016-05-24 19:34:44 +03:00
core.h card: move profile selection after pa_card_new() 2016-06-28 16:55:42 +03:00
cpu-arm.c cpu-arm: Fix memory leak in pa_cpu_get_arm_flags() 2015-03-19 15:36:01 +01:00
cpu-arm.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cpu-orc.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cpu-orc.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cpu-x86.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cpu-x86.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
cpu.c cpu: Add force_generic_code flag to cpu_info struct 2014-09-10 16:34:11 +02:00
cpu.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
creds.h pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
database-gdbm.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
database-simple.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
database-tdb.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
database.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
dbus-shared.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
dbus-shared.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
dbus-util.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
dbus-util.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
device-port.c device-port: Add mechanism to free implementation data 2016-06-22 21:04:47 +05:30
device-port.h device-port: Add mechanism to free implementation data 2016-06-22 21:04:47 +05:30
dllmain.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
dynarray.c dynarray: Add PA_DYNARRAY_FOREACH 2015-02-12 20:33:45 +01:00
dynarray.h dynarray: Add PA_DYNARRAY_FOREACH 2015-02-12 20:33:45 +01:00
endianmacros.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
esound.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
fdsem.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
fdsem.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
flist.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
flist.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
g711.c merge 'lennart' branch back into trunk. 2007-10-28 19:13:50 +00:00
g711.h fix comment 2007-05-22 23:08:34 +00:00
hashmap.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
hashmap.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
hook-list.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
hook-list.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
i18n.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
i18n.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
idxset.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
idxset.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
iochannel.c pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
iochannel.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
ioline.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
ioline.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
ipacl.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
ipacl.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
llist.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
lock-autospawn.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
lock-autospawn.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
log.c log: journal: Prevent duplicate values for CODE_* fields 2016-03-25 12:24:01 +02:00
log.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
ltdl-helper.c core, pulse, modules: Fix undefined behavior with array subscript of invalid type 2015-12-08 08:56:07 +05:30
ltdl-helper.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
macro.h core: Fix GCC 6 compiler warning regarding left shift of negative value 2016-02-18 14:08:13 +01:00
Makefile build-sys: readd stub makefiles to subdirectories to make building with emacs easier 2012-05-15 14:17:58 +02:00
mcalign.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mcalign.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mem.h client audio: Support memfd transport 2016-04-27 18:37:07 +05:30
memblock.c memblock/pstream: Fix two compiler warnings 2016-04-02 06:24:18 +02:00
memblock.h pulsecore: Specially mark global mempools 2016-04-02 05:53:33 +02:00
memblockq.c memblockq: remove internal "missing" state variable 2016-07-22 16:30:25 +05:30
memblockq.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
memchunk.c pulsecore: Reference count mempools 2016-04-02 05:36:52 +02:00
memchunk.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
memfd-wrappers.h pulsecore: Introduce memfd support 2016-04-02 05:47:47 +02:00
memtrap.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
memtrap.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mime-type.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mime-type.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mix.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mix.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mix_neon.c mix: Add special-case ARM NEON code for s16 mixing 2014-05-25 18:13:27 +02:00
modargs.c modargs: Add a mechanism to append modargs 2016-06-22 21:04:47 +05:30
modargs.h modargs: Document behaviour on missing arguments 2016-07-06 21:47:39 +03:00
modinfo.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
modinfo.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
module.c module: Remove redundant core argument from pa_module_unload() 2015-12-07 09:31:58 +01:00
module.h module: Remove redundant core argument from pa_module_unload() 2015-12-07 09:31:58 +01:00
msgobject.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
msgobject.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mutex-posix.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mutex-win32.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
mutex.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
namereg.c namereg: Fire hooks for default sink and source changes 2015-04-02 16:09:47 +02:00
namereg.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
native-common.c pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
native-common.h pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
object.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
object.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
once.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
once.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
packet.c pulsecore/packet: avoid redefinition of pa_packet structure 2015-11-17 14:27:53 +01:00
packet.h packet: Introduce pa_packet_new_data() to copy data into a newly created packet 2015-02-26 23:23:17 +01:00
parseaddr.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
parseaddr.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
pdispatch.c pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
pdispatch.h pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
pid.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
pid.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
pipe.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
pipe.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
play-memblockq.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
play-memblockq.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
play-memchunk.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
play-memchunk.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
poll-posix.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
poll-win32.c daemon: get rid of win32 message timer 2014-06-06 15:50:24 +03:00
poll.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
proplist-util.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
proplist-util.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-cli.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-cli.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-dbus.c Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
protocol-dbus.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-esound.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-esound.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-http.c Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
protocol-http.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-native.c memblockq: move minreq handling in to memblockq 2016-07-22 14:44:35 +05:30
protocol-native.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-simple.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
protocol-simple.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
pstream-util.c protocol-native: Disable srbchannel for setups without SCM_CREDENTIALS 2016-04-24 18:16:34 +03:00
pstream-util.h pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
pstream.c pstream: Add rationale for pa_cmsg_ancil_data_close_fds() 2016-06-22 21:04:47 +05:30
pstream.h pstream: Support memfd blocks transport 2016-04-02 05:55:14 +02:00
queue.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
queue.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
random.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
random.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
ratelimit.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
ratelimit.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
refcnt.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
remap.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
remap.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
remap_mmx.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
remap_neon.c remap: Add ARM NEON optimized remapping and rearrange code 2014-05-25 18:13:27 +02:00
remap_sse.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
resampler.c resampler: Fix leaking lfe filter on init failure 2016-05-27 09:37:37 +05:30
resampler.h resampler: Make some basic functions for rewinding 2015-03-30 10:52:30 +02:00
rtkit.c build-sys: Fix building with Android toolchain 2013-10-05 09:49:20 +05:30
rtkit.h rtkit: update drop-in files 2012-05-15 16:08:40 +02:00
rtpoll.c rtpoll: Fix build error when building with DEBUG_TIMING 2016-01-07 18:01:20 +05:30
rtpoll.h core: Don't export pa_rtpoll_quit(), only used internally 2015-05-25 15:28:27 +02:00
sample-util.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sample-util.h build-sys: Use #ifdef with HAVE_FAST_64BIT_OPERATIONS 2016-01-15 16:10:46 +05:30
sconv-s16be.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sconv-s16be.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sconv-s16le.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sconv-s16le.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sconv.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sconv.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sconv_neon.c sconv: Use optimized conversion function for both directions 2014-08-10 11:59:28 +03:00
sconv_sse.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
semaphore-osx.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
semaphore-posix.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
semaphore-win32.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
semaphore.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
shared.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
shared.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
shm.c shm: Wrap memfd-specific code in relevant ifdef 2016-08-10 22:18:13 +05:30
shm.h pulsecore: Specially mark global mempools 2016-04-02 05:53:33 +02:00
shmasyncq.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
shmasyncq.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sink-input.c sink-input,source-output: Fix a leak during property change logging 2016-08-10 22:16:50 +05:30
sink-input.h sink-input, source-output: remove set_name() 2016-04-25 13:50:47 +03:00
sink.c sink, source, device-port: renames to distinguish latency offsets 2016-06-22 21:04:47 +05:30
sink.h sink, source, device-port: renames to distinguish latency offsets 2016-06-22 21:04:47 +05:30
sioman.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sioman.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sndfile-util.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sndfile-util.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
socket-client.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
socket-client.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
socket-server.c socket-server: add tcp support for systemd socket activation 2015-02-23 20:30:50 +02:00
socket-server.h Make pa_socket_server_new static 2015-02-12 20:33:45 +01:00
socket-util.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
socket-util.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
socket.h core: make sure we use the correct win32 socket errno:s 2015-05-30 13:14:11 +03:00
sound-file-stream.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sound-file-stream.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sound-file.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
sound-file.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
source-output.c source-output: Fix copy-pasto 2016-08-10 22:18:13 +05:30
source-output.h sink-input, source-output: remove set_name() 2016-04-25 13:50:47 +03:00
source.c sink, source, device-port: renames to distinguish latency offsets 2016-06-22 21:04:47 +05:30
source.h sink, source, device-port: renames to distinguish latency offsets 2016-06-22 21:04:47 +05:30
srbchannel.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
srbchannel.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
start-child.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
start-child.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
strbuf.c Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
strbuf.h Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
stream-util.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
stream-util.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
strlist.c Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
strlist.h Rename functions with "tostring" in the name to one with "to_string" to conform with the convention. 2015-09-25 17:29:02 +05:30
svolume.orc update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
svolume_arm.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
svolume_c.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
svolume_mmx.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
svolume_orc.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
svolume_sse.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
tagstruct.c tagstruct: Use flist to potentially save calls to malloc()/free() 2015-02-26 23:23:17 +01:00
tagstruct.h tagstruct: Get rid of pa_tagstruct_free_data() 2015-02-26 23:23:17 +01:00
thread-mq.c thread-mq: Make pa_thread_mq_done more robust 2015-03-27 14:34:12 +01:00
thread-mq.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
thread-posix.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
thread-win32.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
thread.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
time-smoother.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
time-smoother.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
tokenizer.c dynarray: Add PA_DYNARRAY_FOREACH 2015-02-12 20:33:45 +01:00
tokenizer.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
typedefs.h typedefs.h: Move some typedefs to a separate file 2015-12-14 05:01:53 +02:00
usergroup.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
usergroup.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
winerrno.h core: make sure we use the correct win32 socket errno:s 2015-05-30 13:14:11 +03:00
x11prop.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
x11prop.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
x11wrap.c update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00
x11wrap.h update FSF addresses to FSF web page 2015-01-14 22:20:40 +02:00