mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
15 lines
360 B
Fortran
15 lines
360 B
Fortran
module Svc {
|
|
|
|
@ A component that provides statically allocated memory
|
|
passive component StaticMemory {
|
|
|
|
@ Mutexed buffer deallocate input port
|
|
guarded input port bufferDeallocate: [StaticMemoryAllocations] Fw.BufferSend
|
|
|
|
@ Mutexed buffer allocate input port
|
|
guarded input port bufferAllocate: [StaticMemoryAllocations] Fw.BufferGet
|
|
|
|
}
|
|
|
|
}
|