Ondrej Holecek
5effc83479
update FSF addresses to FSF web page
...
FSF addresses used in PA sources are no longer valid and rpmlint
generates numerous warnings during packaging because of this.
This patch changes all FSF addresses to FSF web page according to
the GPL how-to: https://www.gnu.org/licenses/gpl-howto.en.html
Done automatically by sed-ing through sources.
2015-01-14 22:20:40 +02:00
poljar (Damir Jelić)
b358aea89b
Revert dbus_bool_t variables to use TRUE/FALSE instead of true/false
2013-07-04 12:25:47 +03:00
poljar (Damir Jelić)
d806b19714
Remove pa_bool_t and replace it with bool.
...
commands used for this (executed from the pulseaudio/src directory):
find . -regex '\(.*\.[hc]\|.*\.cc\|.*\.m4\)' -not -name 'macro.h' \
-a -not -name 'reserve.[ch]' -a -not -name 'reserve-monitor.[ch]' \
-a -not -name 'glib-mainloop.c' -a -not -name 'gkt-test.c' \
-a -not -name 'glib-mainloop.c' -a -not -name 'gkt-test.c' \
-a -not -name 'poll-win32.c' -a -not -name 'thread-win32.c' \
-a -not -name 'dllmain.c' -a -not -name 'gconf-helper.c' \
-exec sed -i -e 's/\bpa_bool_t\b/bool/g' \
-e 's/\bTRUE\b/true/g' -e 's/\bFALSE\b/false/g' {} \;
and:
sed -i -e '181,194!s/\bpa_bool_t\b/bool/' \
-e '181,194!s/\bTRUE\b/true/' -e \
'181,194!s/\bFALSE\b/false/' pulsecore/macro.h
2013-07-04 12:25:30 +03:00
Tanu Kaskinen
7e4eef2179
dbus: Give NULL as the error parameter to dbus_bus_remove_match().
...
We didn't do anything anyway in case of failures. When we
give NULL as the error, dbus_bus_remove_match() can act
asynchronously, so it becomes faster. Also, the bus daemon
can avoid sending any replies, which reduces the amount of
traffic.
2012-01-28 14:15:42 +02:00
Tanu Kaskinen
bec34c428c
dbus: New helper function: pa_dbus_get_error_message().
2012-01-14 16:57:00 +02:00
Maarten Bosmans
55fdb0162c
Remove extra ; s where they are not allowed in strict C99
2011-08-25 18:21:49 +05:30
Colin Guthrie
06875b67e6
Revert "core: make use of dbus_message_iter_append_fixed_array"
...
This causes problems as outlined in ticket #887 .
This reverts commit f564c7d763 .
2011-01-03 09:22:33 +00:00
Luiz Augusto von Dentz
f564c7d763
core: make use of dbus_message_iter_append_fixed_array
...
dbus_message_iter_append_fixed_array does appends a block of fixed-length
values to an array.
2010-10-20 14:30:05 +03:00
Lennart Poettering
ac76dbde63
dbus: first restart timer, then dispatch it
...
This makes sure that we don't access the timer after it might have been
destroyed already from the dbus timeout callback.
https://bugzilla.redhat.com/attachment.cgi?id=389952
2010-02-21 17:47:36 +01:00
Tanu Kaskinen
0e096632c5
dbus: Do message argument type checking early, centrally.
2009-08-30 19:52:22 +03:00
Tanu Kaskinen
bcaba0b1b4
Merge branch 'master' of git://0pointer.de/pulseaudio into dbus-work
...
Conflicts:
src/Makefile.am
src/daemon/daemon-conf.c
src/daemon/daemon.conf.in
src/modules/module-stream-restore.c
src/pulse/client-conf.c
src/pulsecore/namereg.c
2009-08-16 21:25:48 +03:00
Tanu Kaskinen
3e9de1a36c
dbus-util: Add helpers for proplist handling.
2009-08-09 09:12:31 +03:00
Tanu Kaskinen
805af5e801
dbus-util: Fix broken proplist reading logic.
2009-08-03 19:36:19 +03:00
Tanu Kaskinen
018810ec9a
Bug fixing and minor cleanups.
2009-07-27 20:01:39 +03:00
Tanu Kaskinen
9347e90fed
Finish the Core dbus interface.
2009-07-21 00:02:27 +03:00
Tanu Kaskinen
0bc538b08c
Merge branch 'master' into dbus-work
...
Conflicts:
src/daemon/daemon-conf.c
src/daemon/daemon-conf.h
src/daemon/main.c
src/pulsecore/dbus-util.h
2009-06-29 18:35:06 +03:00
Marc-André Lureau
0955e3d45b
Base mainloop on pa_rtclock_now()
...
Move the mainloop to monotonic based time events.
Introduces 4 helper functions:
pa_{context,core}_rttime_{new,restart}(), that fill correctly a
timeval with the rtclock flag set if the mainloop supports it.
Both mainloop-test and mainloop-test-glib works with rt and timeval
based time events. PulseAudio and clients should be fully functional.
This patch has received several iterations, and this one as been
largely untested.
Signed-off-by: Marc-André Lureau <marca-andre.lureau@nokia.com>
2009-06-20 17:29:31 +03:00
Tanu Kaskinen
c8d819a5ad
dbus-protocol: Connection handling for local connections.
2009-06-16 19:03:22 +03:00
Lennart Poettering
669703daec
dbus: memory leak, free pending calls
2009-04-10 01:14:46 +02:00
Lennart Poettering
9ba9883693
dbus: memory leak, free server id after use
2009-04-10 01:12:46 +02:00
Lennart Poettering
4b521e5d24
be a bit more verbose about the busses we are connected to
2009-04-06 04:20:12 +02:00
Lennart Poettering
90f4fdb071
make sure we keep a reference of the bus connection during the whole runtime if we manage to acquire the bus name
2009-04-06 02:31:22 +02:00
Marc-André Lureau
eb93e2537a
dbus: split dbus-util into dbus-shared
...
modules: fix dbus-util include
pulse: get dbus at context connection
2009-03-30 20:56:55 +03:00