/lk-master/app/tests/ |
A D | thread_tests.c | 33 …ch_and_resume(thread_create("sleeper", &sleep_thread, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in sleep_test() 179 …hreads[i] = thread_create("mutex tester", &mutex_thread, &m, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in mutex_test() 266 …[0] = thread_create("event signaler", &event_signaler, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in event_test() 284 …[0] = thread_create("event signaler", &event_signaler, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in event_test() 400 …0] = thread_create("atomic tester 1", &atomic_tester, (void *)1, LOW_PRIORITY, DEFAULT_STACK_SIZE); in atomic_test() 401 …1] = thread_create("atomic tester 1", &atomic_tester, (void *)1, LOW_PRIORITY, DEFAULT_STACK_SIZE); in atomic_test() 489 t = thread_create("join tester", &join_tester, (void *)1, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in join_tester_server() 498 t = thread_create("join tester", &join_tester, (void *)2, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in join_tester_server() 508 t = thread_create("join tester", &join_tester, (void *)3, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in join_tester_server() 515 t = thread_create("join tester", &join_tester, (void *)4, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in join_tester_server() [all …]
|
A D | fibo.c | 30 …t[0] = thread_create(name, &fibo_thread, (void *)(fibo - 1), DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in fibo_thread() 36 …t[1] = thread_create(name, &fibo_thread, (void *)(fibo - 2), DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in fibo_thread() 64 …d_create("fibo", &fibo_thread, (void *)(uintptr_t)argv[1].u, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in fibo()
|
A D | port_tests.c | 288 "worker1", &ping_pong_thread, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in two_threads_basic() 290 "worker2", &ping_pong_thread, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in two_threads_basic() 501 … "g_watcher", &group_watcher_thread, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in group_basic() 682 DEFAULT_STACK_SIZE in group_waiting()
|
A D | float.c | 85 t[i] = thread_create(name, &float_thread, &val[i], LOW_PRIORITY, DEFAULT_STACK_SIZE); in float_tests()
|
/lk-master/app/inetsrv/ |
A D | inetsrv.c | 82 …ad_create("chargen_worker", &chargen_worker, accept_socket, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in chargen_server() 140 …ad_create("discard_worker", &discard_worker, accept_socket, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in discard_server() 193 …e(thread_create("echo_worker", &echo_worker, accept_socket, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in echo_server() 205 …_and_resume(thread_create("chargen", &chargen_server, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in inetsrv_entry() 206 …_and_resume(thread_create("discard", &discard_server, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in inetsrv_entry() 207 …detach_and_resume(thread_create("echo", &echo_server, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in inetsrv_entry()
|
/lk-master/external/lib/lwip/include/ |
A D | lwipopts.h | 45 #define TCPIP_THREAD_STACKSIZE DEFAULT_STACK_SIZE 50 #define DEFAULT_THREAD_STACKSIZE DEFAULT_STACK_SIZE
|
/lk-master/top/ |
A D | main.c | 106 …thread_t *t = thread_create("bootstrap2", &bootstrap2, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in lk_main() 174 DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in lk_init_secondary_cpus()
|
/lk-master/kernel/include/kernel/ |
A D | thread.h | 139 #define DEFAULT_STACK_SIZE CUSTOM_DEFAULT_STACK_SIZE macro 141 #define DEFAULT_STACK_SIZE ARCH_DEFAULT_STACK_SIZE macro
|
/lk-master/lib/dpc/ |
A D | dpc.c | 72 …tach_and_resume(thread_create("dpc", &dpc_thread_routine, NULL, DPC_PRIORITY, DEFAULT_STACK_SIZE)); in dpc_init()
|
/lk-master/app/ |
A D | app.c | 48 …32_t stack_size = (app->flags & APP_FLAG_CUSTOM_STACK_SIZE) ? app->stack_size : DEFAULT_STACK_SIZE; in start_app()
|
/lk-master/lib/minip/ |
A D | net_timer.c | 134 …me(thread_create("net timer", &net_timer_work_thread, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in net_timer_init()
|
A D | dhcp.c | 277 dhcp_thr = thread_create("dhcp", dhcp_thread, NULL, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in minip_init_dhcp()
|
/lk-master/app/lkboot/ |
A D | commands.c | 164 DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in do_boot() 387 DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in lkb_handle_command()
|
/lk-master/arch/arm/arm/ |
A D | debug.c | 68 …orker = thread_create("dcc worker", dcc_worker_entry, state, DEFAULT_PRIORITY, DEFAULT_STACK_SIZE); in arm_dcc_enable()
|
/lk-master/app/loader/ |
A D | loader.c | 100 DEFAULT_PRIORITY, DEFAULT_STACK_SIZE)); in process_elf_blob()
|
/lk-master/platform/pc/ |
A D | uart.c | 88 DEFAULT_STACK_SIZE)); in uart_init()
|
/lk-master/lib/debugcommands/ |
A D | debugcommands.c | 320 for (size_t i = 0; i < DEFAULT_STACK_SIZE * 2; i++) { in cmd_stackstomp()
|
/lk-master/platform/zynq/ |
A D | gem.c | 457 rx_thread = thread_create("gem_rx", gem_rx_thread, NULL, HIGH_PRIORITY, DEFAULT_STACK_SIZE); in gem_init() 601 … gem_stat_thread, &run_stats, LOW_PRIORITY, DEFAULT_STACK_SIZE); in cmd_gem()
|
/lk-master/platform/stm32f7xx/ |
A D | eth.c | 179 thread_resume(thread_create("eth_rx", ð_rx_worker, NULL, HIGH_PRIORITY, DEFAULT_STACK_SIZE)); in eth_init()
|
/lk-master/dev/virtio/net/ |
A D | virtio-net.c | 173 …eate("virtio_net_rx", &virtio_net_rx_worker, (void *)the_ndev, HIGH_PRIORITY, DEFAULT_STACK_SIZE)); in virtio_net_start()
|
/lk-master/dev/net/pcnet/ |
A D | pcnet.c | 236 DEFAULT_STACK_SIZE)); in pcnet_init()
|
/lk-master/dev/virtio/gpu/ |
A D | virtio-gpu.c | 394 …e("virtio gpu flusher", &virtio_gpu_flush_thread, (void *)gdev, HIGH_PRIORITY, DEFAULT_STACK_SIZE); in virtio_gpu_start()
|