MCPcopy Create free account
hub / github.com/TheOfficialFloW/VitaShell / createStartUpdateThread

Function createStartUpdateThread

io_process.c:70–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70SceUID createStartUpdateThread(uint64_t max, int show_kbs) {
71 current_value = 0;
72
73 UpdateArguments args;
74 args.max = max;
75 args.show_kbs = show_kbs;
76
77 SceUID thid = sceKernelCreateThread("update_thread", (SceKernelThreadEntry)update_thread, 0xBF, 0x4000, 0, 0, NULL);
78 if (thid >= 0)
79 sceKernelStartThread(thid, sizeof(UpdateArguments), &args);
80
81 return thid;
82}
83
84int delete_thread(SceSize args_size, DeleteArguments *args) {
85 SceUID thid = -1;

Callers 12

delete_threadFunction · 0.85
copy_threadFunction · 0.85
export_threadFunction · 0.85
hash_threadFunction · 0.85
send_threadFunction · 0.85
receive_threadFunction · 0.85
install_threadFunction · 0.85
update_extract_threadFunction · 0.85
compress_threadFunction · 0.85
downloadFileProcessFunction · 0.85
refresh_threadFunction · 0.85
license_threadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected