summaryrefslogtreecommitdiff
path: root/libco/psp2.c
diff options
context:
space:
mode:
authorFrancisco José García García2016-08-14 19:30:54 +0200
committerFrancisco José García García2016-08-14 19:30:54 +0200
commitd4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b (patch)
tree6bd1d597fc95f350efcbc40522d7ffff41f5f21a /libco/psp2.c
parent5051773104f5ca1e846858ff543f4438ab662da9 (diff)
downloadpicogpsp-d4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b.tar.gz
picogpsp-d4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b.tar.bz2
picogpsp-d4e60565d521ee6c9dd8dcef9ef3b76e8f4a739b.zip
(VITA) Fix free block
Diffstat (limited to 'libco/psp2.c')
-rw-r--r--libco/psp2.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libco/psp2.c b/libco/psp2.c
index fc1adf0..3ab1bc7 100644
--- a/libco/psp2.c
+++ b/libco/psp2.c
@@ -1,6 +1,6 @@
/*
- libco.arm (2015-06-18)
- author: byuu
+ libco.arm (2016-08-14)
+ author: frangarcj
license: public domain
*/
@@ -104,7 +104,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void)) {
void co_delete(cothread_t handle) {
free(handle);
- sceKernelFreeMemBlock(block);
}
void co_switch(cothread_t handle) {