mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- Rewrote the code that allocates the file descriptor and file
buffer tables so that all the memory allocations are in one place and it's possible to specify exactly how many table entries are required at a time. - Creation and initialization of semaphores now uses the AmigaOS4 specific functions for this purpose, if available. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14857 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: stdio_protos.h,v 1.11 2005-02-28 13:22:53 obarthel Exp $
|
||||
* $Id: stdio_protos.h,v 1.12 2005-03-04 09:07:09 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -114,12 +114,12 @@ extern int __find_vacant_iob_entry(void);
|
||||
/****************************************************************************/
|
||||
|
||||
/* stdio_growfdtable.c */
|
||||
extern int __grow_fd_table(void);
|
||||
extern int __grow_fd_table(int max_fd);
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/* stdio_growiobtable.c */
|
||||
extern int __grow_iob_table(void);
|
||||
extern int __grow_iob_table(int max_fd);
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user