summaryrefslogtreecommitdiff
path: root/examples/standalone/sched.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-07-15 12:28:22 -0600
committerTom Rini <trini@konsulko.com>2024-07-15 12:28:22 -0600
commitaf3c2166d54cdb71914baece900095bad5a44862 (patch)
treefb3305c01cc31f9d81ff9822486daa6f6243f98e /examples/standalone/sched.c
parentc00018507d9923b9137be4b89eb3c3110708a096 (diff)
parent3451b69e33dd3c862d9a843ed22c06c3184136b8 (diff)
Merge patch series "api: Remove duplicate newlines"
This removes a number of duplicate newlines throughout the codebase.
Diffstat (limited to 'examples/standalone/sched.c')
-rw-r--r--examples/standalone/sched.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/standalone/sched.c b/examples/standalone/sched.c
index d507163f6f3..57ae67e1a5b 100644
--- a/examples/standalone/sched.c
+++ b/examples/standalone/sched.c
@@ -21,7 +21,6 @@
* timer interrupts.
*/
-
#define MAX_THREADS 8
#define CTX_SIZE 512
@@ -55,7 +54,6 @@ struct lthread {
static volatile struct lthread lthreads[MAX_THREADS];
static volatile int current_tid = MASTER_THREAD;
-
static uchar dbg = 0;
#define PDEBUG(fmt, args...) { \
@@ -162,7 +160,6 @@ static int testthread (void *name)
return *(int *) name + 1;
}
-
static void sched_init (void)
{
int i;