aboutsummaryrefslogtreecommitdiffstats
path: root/sched.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-15 17:34:14 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-15 17:34:14 +0000
commitc1f3a9e494d581364536b0c95849724898183080 (patch)
tree011e3d01d34928d3dda6e8a28b242ff53a4c1413 /sched.c
parent09284ecfbfb6d405f6b21787c5a9fa48c2cdd700 (diff)
formatting fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5479 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'sched.c')
-rwxr-xr-xsched.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sched.c b/sched.c
index e8c2238d8..52d939752 100755
--- a/sched.c
+++ b/sched.c
@@ -1,13 +1,13 @@
/*
- * Asterisk
+ * Asterisk -- A telephony toolkit for Linux.
*
- * Mark Spencer <markster@marko.net>
+ * Mark Spencer <markster@digium.com>
*
* Copyright(C) Mark Spencer
*
* Distributed under the terms of the GNU General Public License (GPL) Version 2
*
- * Scheduler Routines (form cheops-NG)
+ * Scheduler Routines (from cheops-NG)
*
*/
@@ -33,11 +33,11 @@
(((b).tv_sec == (a).tv_sec) && ((b).tv_usec > (a).tv_usec)))
struct sched {
- struct sched *next; /* Next event in the list */
- int id; /* ID number of event */
- struct timeval when; /* Absolute time event should take place */
- int resched; /* When to reschedule */
- void *data; /* Data */
+ struct sched *next; /* Next event in the list */
+ int id; /* ID number of event */
+ struct timeval when; /* Absolute time event should take place */
+ int resched; /* When to reschedule */
+ void *data; /* Data */
ast_sched_cb callback; /* Callback */
};