Name

RTC_deleteInPort — Delete InPort from RT-component

Calling Sequence

ret=RTC_deleteInPort(rtc, port)

Parameters

rtc

Handle value of RT-component. Negative value if fail.

port

Handle value of DataInPort. Nevative value if fail.

ret

Return value. Nevative value if fail.

Description

This function delete DataInPort from the RTC.

Examples

      initRTM("Scilab");
      rtc = RTC_create();
      
      port = RTC_registerInPort(rtc, "TimedDouble", "in0");
      
      ...
      
      ret = RTC_deleteInPort(rtc, port);

See Also

Authors

Yuki Suga (ysuga.net)