Files
lk/app/tests/fibo.c
Travis Geiselbrecht 4edb93adde [lib][console] rename some console command types to be prefixed with console_
Some of the structures, notably 'cmd', in the lib console stuff are a
little too generically named and have collided with some other code
so prefix the names a bit more cleanly with console_

The change is largely mechanical, and folks with out of tree code can
easily switch by renaming:
cmd -> console_cmd
cmd_args -> console_cmd_args
cmd_block -> console_cmd_block
console_cmd -> console_cmd_func

Apologies if this breaks you but it should be pretty easy to fix.
2020-07-25 15:59:58 -07:00

77 lines
1.9 KiB
C

/*
* Copyright (c) 2012 Travis Geiselbrecht
*
* Use of this source code is governed by a MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT
*/
#include <stdio.h>
#include <rand.h>
#include <lk/err.h>
#include <app/tests.h>
#include <kernel/thread.h>
#include <kernel/mutex.h>
#include <kernel/semaphore.h>
#include <kernel/event.h>
#include <platform.h>
static int fibo_thread(void *argv) {
long fibo = (intptr_t)argv;
thread_t *t[2];
if (fibo == 0)
return 0;
if (fibo == 1)
return 1;
char name[32];
snprintf(name, sizeof(name), "fibo %lu", fibo - 1);
t[0] = thread_create(name, &fibo_thread, (void *)(fibo - 1), DEFAULT_PRIORITY, DEFAULT_STACK_SIZE);
if (!t[0]) {
printf("error creating thread for fibo %ld\n", fibo-1);
return 0;
}
snprintf(name, sizeof(name), "fibo %lu", fibo - 2);
t[1] = thread_create(name, &fibo_thread, (void *)(fibo - 2), DEFAULT_PRIORITY, DEFAULT_STACK_SIZE);
if (!t[1]) {
printf("error creating thread for fibo %ld\n", fibo-2);
thread_resume(t[0]);
thread_join(t[0], NULL, INFINITE_TIME);
return 0;
}
thread_resume(t[0]);
thread_resume(t[1]);
int retcode0, retcode1;
thread_join(t[0], &retcode0, INFINITE_TIME);
thread_join(t[1], &retcode1, INFINITE_TIME);
return retcode0 + retcode1;
}
int fibo(int argc, const console_cmd_args *argv) {
if (argc < 2) {
printf("not enough args\n");
return -1;
}
lk_time_t tim = current_time();
thread_t *t = thread_create("fibo", &fibo_thread, (void *)(uintptr_t)argv[1].u, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE);
thread_resume(t);
int retcode;
thread_join(t, &retcode, INFINITE_TIME);
tim = current_time() - tim;
printf("fibo %d\n", retcode);
printf("took %u msecs to calculate\n", tim);
return NO_ERROR;
}