Functions | |
FLA_Error | FLASH_Copy (FLA_Obj A, FLA_Obj B) |
void FLA_F2C() | flash_copy_f (F_INT *A, F_INT *B, F_INT *IERROR) |
Variables | |
fla_copy_t * | flash_copy_cntl |
References FLA_Check_error_level(), FLA_Copy_check(), FLA_Copy_internal(), FLASH_Queue_disable(), FLASH_Queue_enable(), and FLASH_Queue_get_enabled().
Referenced by flash_copy_f().
00038 { 00039 FLA_Error r_val; 00040 FLA_Bool enable_supermatrix; 00041 00042 // Check parameters. 00043 if ( FLA_Check_error_level() >= FLA_MIN_ERROR_CHECKING ) 00044 FLA_Copy_check( A, B ); 00045 00046 // Find the status of SuperMatrix. 00047 enable_supermatrix = FLASH_Queue_get_enabled(); 00048 00049 // Temporarily disable SuperMatrix. 00050 FLASH_Queue_disable(); 00051 00052 // Execute tasks. 00053 r_val = FLA_Copy_internal( A, B, flash_copy_cntl ); 00054 00055 // Restore SuperMatrix to its previous status. 00056 if ( enable_supermatrix ) 00057 FLASH_Queue_enable(); 00058 00059 return r_val; 00060 }
void FLA_F2C() flash_copy_f | ( | F_INT * | A, | |
F_INT * | B, | |||
F_INT * | IERROR | |||
) |
References FLASH_Copy().
00064 { 00065 *IERROR = FLASH_Copy( *( ( FLA_Obj * ) A ), 00066 *( ( FLA_Obj * ) B ) ); 00067 }