Index: versioncontrol_git_repo_manager/versioncontrol_git_repo_manager.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/versioncontrol_git/versioncontrol_git_repo_manager/Attic/versioncontrol_git_repo_manager.module,v
retrieving revision 1.1.2.10
diff -u -p -r1.1.2.10 versioncontrol_git_repo_manager.module
--- versioncontrol_git_repo_manager/versioncontrol_git_repo_manager.module	15 Jan 2011 21:04:23 -0000	1.1.2.10
+++ versioncontrol_git_repo_manager/versioncontrol_git_repo_manager.module	15 Jan 2011 23:52:52 -0000
@@ -90,6 +90,15 @@ function versioncontrol_git_repo_manager
     'worker callback' => 'versioncontrol_git_repo_manager_run_worker',
     'time' => 0,
   );
+  $queues['versioncontrol_git_repo_parsing'] = array(
+    'worker callback' => 'versioncontrol_git_repo_parsing_worker_callback',
+    'time' => 0,
+  );
+  $queues['versioncontrol_git_repo_activity_stream'] = array(
+    'worker callback' => 'versioncontrol_git_repo_activity_stream_worker_callback',
+    'time' => 0,
+  );
+
 
   return $queues;
 }
@@ -113,6 +122,22 @@ function versioncontrol_git_repo_manager
 }
 
 /**
+ * Worker callback for the versioncontrol_git_repo_activity_stream queue.
+ *
+ * @param array $data
+ */
+function versioncontrol_git_repo_activity_stream_worker_callback($data) {
+}
+
+/**
+ * Worker callback for the versioncontrol_git_repo_parsing queue.
+ *
+ * @param array $data
+ */
+function versioncontrol_git_repo_parsing_worker_callback($data) {
+}
+
+/**
  * Creates a git repository on disk.
  *
  * Note: This function should never be called by apache.  It should
