| TIP: Click on subject to list as thread! | ANSI |
| echo: | |
|---|---|
| to: | |
| from: | |
| date: | |
| subject: | file handles |
PE> How do you specify the number of open files to allow
PE> on a system-wide basis? DosSetMaxFH() is designed to
PE> operate on the current process.
You can target specific programs by making their parent handle more
handles. For example, at one time Maximus BBS needed this prgram to work
around a files problem in certain situations:
#define INCL_NOPM
#define INCL_DOS
#include
#include
#include
#include
void cdecl main(int argc, char **argv)
{
if(argc==1){
printf("FH - Increase File Handles for program.\n");
printf("USAGE : FG [/b | /f] \n");
printf("Options: /b run at background priority\n");
printf(" /f run at foreground priority\n");
}
if(argc > 2 && !stricmp(argv[1], "/b")){
DosSetPrty(PRTYS_PROCESSTREE, PRTYC_IDLETIME, 1, 0);
argv++;
}
else if(argc > 2 && !stricmp(argv[1], "/f")){
DosSetPrty(PRTYS_PROCESSTREE, PRTYC_FOREGROUNDSERVER, 1, 0);
argv++;
}
DosSetMaxFH(50);
exit(spawnvp(P_WAIT, argv[1], &argv[1]));
}
--- Maximus/2 3.00
* Origin: Sol 3 * Toronto * V.32 * (905)858-8488 (1:259/414)SEEN-BY: 50/99 270/101 620/243 625/100 711/401 409 410 413 430 808 809 934 SEEN-BY: 711/955 712/407 515 624 628 713/888 800/1 @PATH: 259/414 400 99 250/99 3615/50 396/1 270/101 712/515 711/808 934 |
|
| SOURCE: echomail via fidonet.ozzmosis.com | |
Email questions or comments to sysop@ipingthereforeiam.com
All parts of this website painstakingly hand-crafted in the U.S.A.!
IPTIA BBS/MUD/Terminal/Game Server List, © 2025 IPTIA Consulting™.