From: Russell Bryant Date: Fri, 15 Apr 2005 17:34:14 +0000 (+0000) Subject: formatting fixes X-Git-Tag: 1.2.0-beta1~838 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eea0213fe4c991ca50ff5331558ff80bd8e6d0dc;p=thirdparty%2Fasterisk.git formatting fixes git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5479 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/sched.c b/sched.c index e8c2238d8c..52d9397525 100755 --- a/sched.c +++ b/sched.c @@ -1,13 +1,13 @@ /* - * Asterisk + * Asterisk -- A telephony toolkit for Linux. * - * Mark Spencer + * Mark Spencer * * 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 */ };