summaryrefslogtreecommitdiffstats
path: root/bus
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-09-06 00:14:06 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2006-09-06 00:14:06 +0000
commit88f69757b93c7112447b97868c7dbde69dc00caa (patch)
tree9ef0fc3aeb2fee16a193719e7881f4af55c23dfd /bus
parent57657889128dc54069525cce47bce51365dbde0f (diff)
* doc/TODO, various source files: Audited todo's and FIXME's and
prepended the ones we should be looking at with 1.0. Those prepended with 1.0? need clerification or might not be needed for 1.0
Diffstat (limited to 'bus')
-rw-r--r--bus/activation.c2
-rw-r--r--bus/connection.c2
-rw-r--r--bus/desktop-file.c2
-rw-r--r--bus/driver.c2
-rw-r--r--bus/test-main.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/bus/activation.c b/bus/activation.c
index 7b7afe8a..e1fe2954 100644
--- a/bus/activation.c
+++ b/bus/activation.c
@@ -1017,7 +1017,7 @@ bus_activation_send_pending_auto_activation_messages (BusActivation *activation
}
/**
- * FIXME @todo the error messages here would ideally be preallocated
+ * FIXME @todo 1.0? the error messages here would ideally be preallocated
* so we don't need to allocate memory to send them.
* Using the usual tactic, prealloc an OOM message, then
* if we can't alloc the real error send the OOM error instead.
diff --git a/bus/connection.c b/bus/connection.c
index d15a4266..d05b7756 100644
--- a/bus/connection.c
+++ b/bus/connection.c
@@ -183,7 +183,7 @@ bus_connection_disconnected (DBusConnection *connection)
bus_matchmaker_disconnected (matchmaker, connection);
}
- /* Drop any service ownership. FIXME Unfortunately, this requires
+ /* Drop any service ownership. FIXME 1.0? Unfortunately, this requires
* memory allocation and there doesn't seem to be a good way to
* handle it other than sleeping; we can't "fail" the operation of
* disconnecting a client, and preallocating a broadcast "service is
diff --git a/bus/desktop-file.c b/bus/desktop-file.c
index 7a96a44c..d0f9dbb0 100644
--- a/bus/desktop-file.c
+++ b/bus/desktop-file.c
@@ -772,7 +772,7 @@ bus_desktop_file_get_string (BusDesktopFile *desktop_file,
*val = _dbus_strdup (raw);
- /* FIXME we don't distinguish "key not found" from "out of memory" here,
+ /* FIXME 1.0 we don't distinguish "key not found" from "out of memory" here,
* which is broken.
*/
if (*val == NULL)
diff --git a/bus/driver.c b/bus/driver.c
index 636c8cad..1a2c050b 100644
--- a/bus/driver.c
+++ b/bus/driver.c
@@ -1734,7 +1734,7 @@ bus_driver_handle_message (DBusConnection *connection,
void
bus_driver_remove_connection (DBusConnection *connection)
{
- /* FIXME Does nothing for now, should unregister the connection
+ /* FIXME 1.0 Does nothing for now, should unregister the connection
* with the bus driver.
*/
}
diff --git a/bus/test-main.c b/bus/test-main.c
index 1228ae94..9c52fdbf 100644
--- a/bus/test-main.c
+++ b/bus/test-main.c
@@ -94,7 +94,7 @@ main (int argc, char **argv)
_dbus_string_init_const (&test_data_dir, dir);
#if 0
- /* FIXME this is disabled because of thread bugs that need fixing... */
+ /* FIXME 1.0 this is disabled because of thread bugs that need fixing... */
if (!_dbus_threads_init_debug ())
die ("initializing debug threads");
#endif