Changeset 7159 for trunk/ippTools/src/dettool.c
- Timestamp:
- May 19, 2006, 3:58:18 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/dettool.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/dettool.c
r7158 r7159 16 16 static bool stacframeMode(pxConfig *config); 17 17 static bool addmasterMode(pxConfig *config); 18 static bool masterMode(pxConfig *config); 19 static bool masterframeMode(pxConfig *config); 18 20 19 21 static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id); … … 62 64 case DETTOOL_MODE_ADDMASTER: 63 65 if (!addmasterMode(config)) { 66 goto FAIL; 67 } 68 break; 69 case DETTOOL_MODE_MASTER: 70 if (masterMode(config)) { 71 goto FAIL; 72 } 73 break; 74 case DETTOOL_MODE_MASTERFRAME: 75 if (masterframeMode(config)) { 64 76 goto FAIL; 65 77 } … … 663 675 return true; 664 676 } 677 678 static bool masterMode(pxConfig *config) 679 { 680 PS_ASSERT_PTR_NON_NULL(config, false); 681 return true; 682 } 683 684 static bool masterframeMode(pxConfig *config) 685 { 686 PS_ASSERT_PTR_NON_NULL(config, false); 687 return true; 688 }
Note:
See TracChangeset
for help on using the changeset viewer.
