|
From: Kevin's C. B. A. <kev...@pl...> - 2007-03-11 00:51:31
|
Update of /cvsroot/libteklti/libteklti/src In directory planetsaphire.com:/tmp/cvs-serv2607/src Modified Files: TekFileASCIIBare.386.cpp TekFileASCIIBare.cpp TekFileBinary.386.cpp testsuite-err.cpp Log Message: FIX: Made assembly code compilable. Index: TekFileBinary.386.cpp =================================================================== RCS file: /cvsroot/libteklti/libteklti/src/TekFileBinary.386.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C 2 -d -p -r1.12 -r1.13 *** TekFileBinary.386.cpp 12 Feb 2007 09:56:47 -0000 1.12 --- TekFileBinary.386.cpp 11 Mar 2007 00:58:16 -0000 1.13 *************** namespace teklti *** 40,57 **** //#ifdef TEKLTI_OBSERVE_BINARY_FILE_MODE ! const char TekFileBinary_ReadOnly[] = "rb"; ! const char TekFileBinary_WriteOnly[] = "wb"; ! const char TekFileBinary_Append[] = "ab"; ! const char TekFileBinary_ReadWrite[] = "r+b"; ! const char TekFileBinary_ReadWriteTrunc[] = "w+b"; ! const char TekFileBinary_ReadAppend[] = "a+b"; //#else /* not TEKLTI_OBSERVE_BINARY_FILE_MODE */ [...2032 lines suppressed...] /*! ! \fn TekFileBinary::get_Location64(uint64_t * Location) Retrieves the location and stores it in a 64-bit variable. */ ! TEKERR TekFileBinary::get_Location64(uint64_t * Location) { return TEKERR_NOTIMPL; --- 1605,1614 ---- /*! ! \fn FileBinary::get_Location64(uint64_t * Location) Retrieves the location and stores it in a 64-bit variable. */ ! TEKERR FileBinary::get_Location64(uint64_t * Location) { return TEKERR_NOTIMPL; Index: TekFileASCIIBare.cpp =================================================================== RCS file: /cvsroot/libteklti/libteklti/src/TekFileASCIIBare.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -C 2 -d -p -r1.17 -r1.18 *** TekFileASCIIBare.cpp 15 Feb 2007 11:08:48 -0000 1.17 --- TekFileASCIIBare.cpp 11 Mar 2007 00:58:15 -0000 1.18 *************** TEKERR FileASCIIBare::get_Location64(uin *** 726,731 **** - #endif /* not USE_386_ASM */ - } --- 726,730 ---- } + #endif /* not USE_386_ASM */ Index: testsuite-err.cpp =================================================================== RCS file: /cvsroot/libteklti/libteklti/src/testsuite-err.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C 2 -d -p -r1.6 -r1.7 *** testsuite-err.cpp 28 Feb 2007 19:41:56 -0000 1.6 --- testsuite-err.cpp 11 Mar 2007 00:58:16 -0000 1.7 *************** void checkprocessor ( void ) *** 236,240 **** { #ifdef TEKLTI_USE_386_ASM ! struct TekStdProcessorInfoIntel tekgen[3]; TEKERR tekerr; --- 236,240 ---- { #ifdef TEKLTI_USE_386_ASM ! /* struct TekStdProcessorInfo tekgen[3]; TEKERR tekerr; *************** void checkprocessor ( void ) *** 242,247 **** --- 242,249 ---- if ( tekerr != TEKERR_OK ) exit(EXIT_FAILURE); + */ #endif /* TEKLTI_USE_386_ASM */ + /* This is currently a do-nothing function. */ return; } Index: TekFileASCIIBare.386.cpp =================================================================== RCS file: /cvsroot/libteklti/libteklti/src/TekFileASCIIBare.386.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C 2 -d -p -r1.10 -r1.11 *** TekFileASCIIBare.386.cpp 10 Feb 2007 10:34:41 -0000 1.10 --- TekFileASCIIBare.386.cpp 11 Mar 2007 00:58:15 -0000 1.11 *************** *** 35,51 **** static const void * _tfbtmp = NULL; ! const char TekFileASCIIBare_ReadOnly[] = "rb"; ! const char TekFileASCIIBare_WriteOnly[] = "wb"; ! const char TekFileASCIIBare_Append[] = "ab"; ! const char TekFileASCIIBare_ReadWrite[] = "r+b"; ! const char TekFileASCIIBare_ReadWriteTrunc[] = "w+b"; ! const char TekFileASCIIBare_ReadAppend[] = "a+b"; ! /*extern const char TekFileASCIIBare_ReadOnly[] = "r"; [...2659 lines suppressed...] /*! ! \fn TekFileASCIIBare::get_Location64(uint64_t * Location) Retrieves the location and stores it in a 64-bit variable. */ ! TEKERR teklti::TekFileASCIIBare::get_Location64( uint64_t * Location ) --- 2419,2428 ---- /*! ! \fn FileASCIIBare::get_Location64(uint64_t * Location) Retrieves the location and stores it in a 64-bit variable. */ ! TEKERR teklti::FileASCIIBare::get_Location64( uint64_t * Location ) |