1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Portability fixes.

Don't free memory from InnoDB at exit (as this may be done before other threads are finnished)


include/my_pthread.h:
  Added missing prototypes
innobase/srv/srv0start.c:
  Don't free memory at exit (as this may be done before other threads are finnished)
mysys/mf_iocache.c:
  Cleanup (Don't rely on return value from mutex_unlock())
This commit is contained in:
unknown
2002-07-01 11:19:17 +03:00
parent f26ae21229
commit 61ee4a8087
3 changed files with 19 additions and 11 deletions

View File

@ -1351,7 +1351,8 @@ innobase_shutdown_for_mysql(void)
srv_conc_n_threads);
}
#ifdef NOT_WORKING_YET
ut_free_all_mem();
#endif
return((int) DB_SUCCESS);
}