Skip to content

Commit 17c5422

Browse files
committed
Remove f{,try,un}lockfile implementation
1 parent 20f4d34 commit 17c5422

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

libogc/lock_supp.c

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -129,18 +129,3 @@ int __SYSCALL(cond_wait_recursive)(_COND_T *cond, _LOCK_RECURSIVE_T *lock, uint6
129129

130130
return LWP_CondTimedWait(GetCond(cond), GetMutex(&lock->lock, true), &tv);
131131
}
132-
133-
void flockfile(FILE *fp)
134-
{
135-
__lock_acquire_recursive(fp->_lock);
136-
}
137-
138-
int ftrylockfile(FILE *fp)
139-
{
140-
return __lock_try_acquire_recursive(fp->_lock);
141-
}
142-
143-
void funlockfile(FILE *fp)
144-
{
145-
__lock_release_recursive(fp->_lock);
146-
}

0 commit comments

Comments
 (0)