struct ta_initial_task

Overview

A description for a task/thread to be executed at TA startup More…

#include <rcf.h>

struct ta_initial_task {
    // fields

    rcf_execute_mode mode;
    char* entry;
    int argc;
    char** argv;
    struct ta_initial_task* next;
};

Detailed Documentation

A description for a task/thread to be executed at TA startup

Fields

rcf_execute_mode mode

Task execution mode

char* entry

Procedure entry point

int argc

Number of arguments

char** argv

Arguments as strings

struct ta_initial_task* next

Link to the next task