Cleanup comments and bad indent
[lttng-tools.git] / ltt-sessiond / traceable-app.c
index bbb1b539ff8faebff8e54a8bd11db36720d40c7e..cce8a5827a1adf301a65dd518db2603a724485ba 100644 (file)
@@ -3,8 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
+ * as published by the Free Software Foundation; only version 2
+ * of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -42,10 +42,8 @@ static void add_traceable_app(struct ltt_traceable_app *lta);
 static void del_traceable_app(struct ltt_traceable_app *lta);
 
 /*
- *  add_traceable_app
- *
- *  Add a traceable application structure to the global
- *  list protected by a mutex.
+ * Add a traceable application structure to the global list protected by a
+ * mutex.
  */
 static void add_traceable_app(struct ltt_traceable_app *lta)
 {
@@ -56,10 +54,8 @@ static void add_traceable_app(struct ltt_traceable_app *lta)
 }
 
 /*
- *  del_traceable_app
- *
- *  Delete a traceable application structure from the
- *  global list protected by a mutex.
+ * Delete a traceable application structure from the global list protected by a
+ * mutex.
  */
 static void del_traceable_app(struct ltt_traceable_app *lta)
 {
@@ -73,13 +69,10 @@ static void del_traceable_app(struct ltt_traceable_app *lta)
 }
 
 /*
- *  register_traceable_app
+ * Using pid and uid (of the app), allocate a new ltt_traceable_app struct and
+ * add it to the global traceable app list.
  *
- *  Using pid and uid (of the app), allocate
- *  a new ltt_traceable_app struct and add it
- *  to the global traceable app list.
- *
- *  On success, return 0, else return malloc ENOMEM.
+ * On success, return 0, else return malloc ENOMEM.
  */
 int register_traceable_app(pid_t pid, uid_t uid)
 {
@@ -94,16 +87,14 @@ int register_traceable_app(pid_t pid, uid_t uid)
        lta->uid = uid;
        lta->pid = pid;
        add_traceable_app(lta);
-       DBG("PID %d registered", pid);
+       DBG("Application %d registered with UID %d", pid, uid);
 
        return 0;
 }
 
 /*
- *  unregister_traceable_app
- *
- *  Unregister app by removing it from the global
- *  traceable app list and freeing the data struct.
+ * Unregister app by removing it from the global traceable app list and freeing
+ * the data struct.
  */
 void unregister_traceable_app(pid_t pid)
 {
@@ -118,9 +109,7 @@ void unregister_traceable_app(pid_t pid)
 }
 
 /*
- *  get_app_count
- *
- *  Return traceable_app_count
+ * Return traceable_app_count
  */
 unsigned int get_app_count(void)
 {
@@ -128,10 +117,8 @@ unsigned int get_app_count(void)
 }
 
 /*
- *  find_app_by_pid
- *
- *  Iterate over the traceable apps list and
- *  return a pointer or NULL if not found.
+ * Iterate over the traceable apps list and return a pointer or NULL if not
+ * found.
  */
 struct ltt_traceable_app *find_app_by_pid(pid_t pid)
 {
@@ -151,10 +138,7 @@ struct ltt_traceable_app *find_app_by_pid(pid_t pid)
 }
 
 /*
- *     get_app_list_pids
- *
- *  List traceable user-space application and fill an
- *  array of pids.
+ * List traceable user-space application and fill an array of pids.
  */
 void get_app_list_pids(pid_t *pids)
 {
This page took 0.02355 seconds and 4 git commands to generate.