Changeset 211


Ignore:
Timestamp:
Mar 11, 2017, 2:48:09 PM (8 years ago)
Author:
Valery V. Sedletski
Message:

util: Rename again diskinfo -> f32parts, remove diskdump from packages.

Location:
trunk/src
Files:
1 added
9 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/doc/message.txt

    r188 r211  
    302302LOG02436|2436  /|%s is fragmented |{}
    303303LOG02437|2437  /|CHKDSK was unable to recover a lost chain. SYS%4.4u |{}
     304LOG02438|2438  /| | |Directory of %s (%lu clusters) | | |{}
     305LOG02439|2439  /|This has been corrected |{}
     306LOG02440|2440  /|%lu lost clusters found in %lu chains |{}
     307LOG02441|2441  /|Warning!  Not enough memory is available for CHKDSK|to recover all lost data. |{}
     308LOG02442|2442  /|The system detected lost data on disk %s. |{}
     309LOG02443|2443  /|CHKDSK placed recovered data in file %s. |{}
     310LOG02444|2444  /|CHKDSK corrected an allocation error for the file %s. |{}
    304311
  • TabularUnified trunk/src/makefile.mk

    r200 r211  
    2727util     = &
    2828 cachef32.exe &
    29  diskdump.exe &
    30  diskinfo.exe &
     29 f32parts.exe &
    3130 f32mon.exe   &
    3231 f32stat.exe  &
     
    5554sym      = &
    5655 boot\fat32.sym dll\ufat32.sym &
    57  cachef32.sym diskdump.sym diskinfo.sym f32mon.sym &
     56 cachef32.sym f32parts.sym f32mon.sym &
    5857 f32stat.sym f32chk.sym fat32chk.sym fat32fmt.sym fat32sys.sym
    5958
     
    7069 $(p)os2\dll\ufat32.dll $(p)os2\dll\ufat32.sym &
    7170 $(p)os2\cachef32.exe $(p)os2\cachef32.sym &
    72  $(p)os2\diskdump.exe $(p)os2\diskdump.sym &
    73  $(p)os2\diskinfo.exe $(p)os2\diskinfo.sym &
     71 $(p)os2\f32parts.exe $(p)os2\f32parts.sym &
    7472 $(p)os2\f32mon.exe $(p)os2\f32mon.sym &
    7573 $(p)os2\f32stat.exe $(p)os2\f32stat.sym &
     
    122120
    123121.SUFFIXES:
    124 .SUFFIXES: .flt .ifs .dll .exe .lib .lnk .ols .obc .obd .obj .cpp .c .h .asm .sym .map .wmp .inf .ipf .bmp
     122.SUFFIXES: .flt .ifs .dll .exe .lib .lnk .ols .obc .obd .obj .cpp .c .c16 .h .asm .sym .map .wmp .inf .ipf .bmp
    125123
    126124all: $(BLDROOT)\bld.flg $(PROJ_BLD)\makefile.wcc dirs copy targets &
  • TabularUnified trunk/src/ufat32/chkdsk.c

    r207 r211  
    166166            case 'H':
    167167            case '?':
     168               // show help
     169               usage(rgArgv[0]);
     170               exit(0);
    168171               break;
    169172            default :
     
    461464      }
    462465
    463    show_message("\n%1 bytes total disk spaceî\n", 0, 1361, 1,
     466   show_message("\n%1 bytes total disk space.\n", 0, 1361, 1,
    464467      TYPE_DOUBLE, (DOUBLE)pCD->ulTotalClusters * pCD->ulClusterSize);
    465468   if (pCD->ulBadClusters)
  • TabularUnified trunk/src/ufat32/fatfunc.c

    r206 r211  
    19611961      if (pszOldFile)
    19621962         {
    1963          if (pszFile)
    1964             strcpy(pszOldFileName, pszOldFile);
     1963         strcpy(pszOldFileName, pszOldFile);
    19651964
    19661965         ulOldCluster = FindPathCluster(pCD, ulDirCluster, pszOldFileName, &OldOldEntry, NULL);
  • TabularUnified trunk/src/ufat32/makefile.wcc

    r207 r211  
    8888     sys
    8989 @%append $[*.lnk IMPORT &
    90      DOSSETSIGHANDLER DOSCALLS.14
     90     DOSSETSIGHANDLER DOSCALLS.14, &
     91     DOSSETVEC DOSCALLS.89
    9192 @%append $[*.lnk LIBPATH $(%WATCOM)\lib386;$(%WATCOM)\lib386\os2
    9293 @%append $[*.lnk LIB os2386,clib3s,math3s
  • TabularUnified trunk/src/ufat32/os2.c

    r205 r211  
    792792             {
    793793             double arg = va_arg(va, double);
    794              printf(",%lf", arg);
     794             printf(",%12.0lf", arg);
    795795             }
    796796          else if (usType == TYPE_STRING)
  • TabularUnified trunk/src/ufat32/ufat32.c

    r207 r211  
    1111int sys(int argc, char *argv[], char *envp[]);
    1212
    13 int show_message (char *pszMsg, unsigned short usLogMsg, unsigned short usMsg, unsigned short usNumFields, ...);
    1413void cleanup(void);
    1514
     
    169168}
    170169
    171 // the 16-bit exception handler
     170// the 16-bit signal handler
    172171void _Far16 _Pascal _loadds HANDLER(USHORT x, USHORT iSignal)
    173172{
     
    178177   exit(1);
    179178}
     179
     180// 16-bit exception handler
     181int _Far16 _Pascal _loadds HANDLER2(void)
     182{
     183   printf("\n\nException has caught\n");
     184
     185   // remount disk for changes to take effect
     186   cleanup();
     187   exit(1);
     188
     189   return 0;
     190}
  • TabularUnified trunk/src/ufat32/win32.c

    r205 r211  
    757757             {
    758758             double arg = va_arg(va, double);
    759              printf(",%lf", arg);
     759             printf(",%%12.0lf", arg);
    760760             }
    761761          else if (usType == TYPE_STRING)
  • TabularUnified trunk/src/util/makefile.wcc

    r160 r211  
    1515OBJS5=$(PROJ_BLD)\diskdump.obj
    1616
    17 TARGETS=$(BINROOT)\os2\f32stat.exe $(BINROOT)\os2\f32mon.exe $(BINROOT)\os2\diskinfo.exe  &
     17TARGETS=$(BINROOT)\os2\f32stat.exe $(BINROOT)\os2\f32mon.exe $(BINROOT)\os2\f32parts.exe  &
    1818        $(BINROOT)\os2\cachef32.exe $(BINROOT)\os2\diskdump.exe $(BINROOT)\os2\diskdump.sym $(BINROOT)\os2\cachef32.sym &
    19         $(BINROOT)\os2\diskinfo.sym $(BINROOT)\os2\f32mon.sym $(BINROOT)\os2\f32stat.sym
     19        $(BINROOT)\os2\f32parts.sym $(BINROOT)\os2\f32mon.sym $(BINROOT)\os2\f32stat.sym
    2020DIRS=..\include
    2121
    2222SYS=os2v2
    2323
    24 #diskinf0.c: fat32def.h fat32.h
    25 #diskinf1.c: fat32def.h fat32.h
    26 #diskinf2.c: fat32def.h fat32.h
    27 #monitor.c:  fat32def.h
    28 #cachef32.c: fat32def.h
    29 #f32stat.c:  fat32def.h
     24#diskinf0.c: ..\include\fat32def.h ..\include\fat32.h
     25#diskinf1.c: ..\include\fat32def.h ..\include\fat32.h
     26#diskinf2.c: ..\include\fat32def.h ..\include\fat32.h
     27#monitor.c:  ..\include\fat32def.h
     28#cachef32.c: ..\include\fat32def.h
     29#f32stat.c:  ..\include\fat32def.h
    3030
    3131$(BINROOT)\os2\f32stat.exe:
     
    3333$(BINROOT)\os2\f32mon.exe:
    3434
    35 $(BINROOT)\os2\diskinfo.exe:
     35$(BINROOT)\os2\f32parts.exe:
    3636
    3737$(BINROOT)\os2\cachef32.exe:
     
    4343$(BINROOT)\os2\cachef32.sym:
    4444
    45 $(BINROOT)\os2\diskinfo.sym:
     45$(BINROOT)\os2\f32parts.sym:
    4646
    4747$(BINROOT)\os2\f32mon.sym:
     
    6161 @for %e in ($<) do @%append $^@ FILE %e
    6262
    63 $(PROJ_BLD)\diskinfo.ols: $(OBJS4)
     63$(PROJ_BLD)\f32parts.ols: $(OBJS4)
    6464 @%create $^@
    6565 @for %e in ($<) do @%append $^@ FILE %e
Note: See TracChangeset for help on using the changeset viewer.