gtpc2m0jC/C++ Language Support User's Guide

cebic_goto_bss-Change MDBF Subsystem to BSS

This function changes the MDBF subsystem to the BSS.

Format

#include  <sysapi.h>
void      cebic_goto_bss(void);

Normal Return

Void.

Error Return

Not applicable.

Programming Considerations

The MDBF subsystem is changed to BSS.

Examples

The following example changes the DBI and SSU ID to which the ECB belongs.

#include <sysapi.h>
#include <tpfapi.h>
#include <string.h>
 
struct uatbc_area   uatbc_parm;
 
uatbc_parm.uat_call = UAT_NSSI;
memcpy(&uatbc_parm.uat_parm, "MYSS", 4);
 
if (uatbc(&uatbc_parm) == UAT_SUCCESS)
{
    struct ms0ut    *ssu_slot_ptr = uatbc_parm.uat_ssu_ptr;
    unsigned short  new_dbi = *(unsigned short *)ssu_slot_ptr->mu0dpi;
 
    cebic_goto_dbi(new_dbi);
    
·
·
·
}

Related Information