44
CS269: HW/SW Engineering of Embedded Systems, Winter02
Process
•May declare fields and functions
•May  be extended to define other processes
–Object orientation a la Java and C++
•Fields and functions are private unless declared public
•Contain at least on constructor and a thread function
•Interact with other object through port
•Port
–Special field of type interface
•Interface
–Declare function with input/output type without implementing them
•Process access port through calling interface functions
–
•