From bc1c890468b36f6e146ceb592202397e0c35175d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 2 Apr 2007 21:08:05 +0000 Subject: [PATCH] It's now safe to call PHYSFS_* functions from callbacks, since mutexes are now recursive internally...removed warning in headers. --- physfs.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/physfs.h b/physfs.h index 8543869c..5d7cf79e 100644 --- a/physfs.h +++ b/physfs.h @@ -2075,10 +2075,6 @@ __EXPORT__ int PHYSFS_mount(const char *newDir, const char *mountPoint, int appe __EXPORT__ const char *PHYSFS_getMountPoint(const char *dir); -/* - * it is not safe to call physfs functions in these callbacks, as they may - * be holding non recursive mutexes. - */ /* !!! FIXME: comment! */ typedef void (*PHYSFS_StringCallback)(void *, const char *); typedef void (*PHYSFS_EnumFilesCallback)(void *, const char *, const char *);