Changeset 14076
- Timestamp:
- Jul 9, 2007, 10:06:15 AM (19 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/dettool.c
r14075 r14076 64 64 static bool addresidexpMode(pxConfig *config); 65 65 static bool residexpMode(pxConfig *config); 66 static bool residdetrunMode(pxConfig *config);66 static bool todetrunsummaryMode(pxConfig *config); 67 67 static bool updateresidexpMode(pxConfig *config); 68 68 static bool adddetrunsummaryMode(pxConfig *config); … … 135 135 MODECASE(DETTOOL_MODE_ADDRESIDEXP, addresidexpMode); 136 136 MODECASE(DETTOOL_MODE_RESIDEXP, residexpMode); 137 MODECASE(DETTOOL_MODE_ RESIDDETRUN, residdetrunMode);137 MODECASE(DETTOOL_MODE_TODETRUNSUMMARY, todetrunsummaryMode); 138 138 MODECASE(DETTOOL_MODE_UPDATERESIDEXP, updateresidexpMode); 139 139 MODECASE(DETTOOL_MODE_ADDDETRUNSUMMARY, adddetrunsummaryMode); … … 5257 5257 } 5258 5258 5259 static bool residdetrunMode(pxConfig *config)5259 static bool todetrunsummaryMode(pxConfig *config) 5260 5260 { 5261 5261 PS_ASSERT_PTR_NON_NULL(config, false); … … 5314 5314 " HAVING\n" 5315 5315 " COUNT(detResidExp.exp_id) = COUNT(detInputExp.exp_id)\n" 5316 " ) AS residdetrun\n"5316 " ) AS Foo\n" 5317 5317 ); 5318 5318 -
trunk/ippTools/src/dettool.h
r13575 r14076 56 56 DETTOOL_MODE_RESIDEXP, 57 57 DETTOOL_MODE_ADDRESIDEXP, 58 DETTOOL_MODE_ RESIDDETRUN,58 DETTOOL_MODE_TODETRUNSUMMARY, 59 59 DETTOOL_MODE_UPDATERESIDEXP, 60 60 DETTOOL_MODE_ADDDETRUNSUMMARY, -
trunk/ippTools/src/dettoolConfig.c
r14074 r14076 765 765 "use the simple output format", false); 766 766 767 // - residdetrun768 psMetadata * residdetrunArgs = psMetadataAlloc();769 psMetadataAddBool( residdetrunArgs, PS_LIST_TAIL, "-simple", 0,770 "use the simple output format", false); 771 psMetadataAddU64( residdetrunArgs, PS_LIST_TAIL, "-limit", 0,767 // -todetrunsummary 768 psMetadata *todetrunsummaryArgs = psMetadataAlloc(); 769 psMetadataAddBool(todetrunsummaryArgs, PS_LIST_TAIL, "-simple", 0, 770 "use the simple output format", false); 771 psMetadataAddU64(todetrunsummaryArgs, PS_LIST_TAIL, "-limit", 0, 772 772 "limit result set to N items", 0); 773 773 … … 953 953 PXTOOL_ADD_MODE("-addresidexp", "", DETTOOL_MODE_ADDRESIDEXP, addresidexpArgs); 954 954 PXTOOL_ADD_MODE("-residexp", "", DETTOOL_MODE_RESIDEXP, residexpArgs); 955 PXTOOL_ADD_MODE("- residdetrun", "", DETTOOL_MODE_RESIDDETRUN, residdetrunArgs);955 PXTOOL_ADD_MODE("-todetrunsummary", "", DETTOOL_MODE_TODETRUNSUMMARY, todetrunsummaryArgs); 956 956 PXTOOL_ADD_MODE("-updateresidexp", "", DETTOOL_MODE_UPDATERESIDEXP,updateresidexpArgs); 957 957 PXTOOL_ADD_MODE("-adddetrunsummary", "", DETTOOL_MODE_ADDDETRUNSUMMARY,adddetrunsummaryArgs);
Note:
See TracChangeset
for help on using the changeset viewer.
