(VITA) Fix free block
This commit is contained in:
parent
5051773104
commit
d4e60565d5
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
libco.arm (2015-06-18)
|
libco.arm (2016-08-14)
|
||||||
author: byuu
|
author: frangarcj
|
||||||
license: public domain
|
license: public domain
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -104,7 +104,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void)) {
|
||||||
|
|
||||||
void co_delete(cothread_t handle) {
|
void co_delete(cothread_t handle) {
|
||||||
free(handle);
|
free(handle);
|
||||||
sceKernelFreeMemBlock(block);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void co_switch(cothread_t handle) {
|
void co_switch(cothread_t handle) {
|
||||||
|
|
Loading…
Reference in New Issue