37#ifndef _RTEMS_RTEMS_SEMMP_H
38#define _RTEMS_RTEMS_SEMMP_H
40#ifndef _RTEMS_RTEMS_SEMIMPL_H
41# error "Never use <rtems/rtems/semmp.h> directly; include <rtems/rtems/semimpl.h> instead."
65 SEMAPHORE_MP_ANNOUNCE_CREATE = 0,
66 SEMAPHORE_MP_ANNOUNCE_DELETE = 1,
67 SEMAPHORE_MP_EXTRACT_PROXY = 2,
68 SEMAPHORE_MP_OBTAIN_REQUEST = 3,
69 SEMAPHORE_MP_OBTAIN_RESPONSE = 4,
70 SEMAPHORE_MP_RELEASE_REQUEST = 5,
71 SEMAPHORE_MP_RELEASE_RESPONSE = 6
79 rtems_packet_prefix Prefix;
86static inline bool _Semaphore_MP_Is_remote(
Objects_Id id )
uint32_t rtems_option
This type represents a Classic API directive option set.
Definition: options.h:126
rtems_status_code
This enumeration provides status codes for directives of the Classic API.
Definition: status.h:85
uint32_t rtems_name
This type represents Classic API object names.
Definition: types.h:226
Objects_Id rtems_id
This type represents RTEMS object identifiers.
Definition: types.h:94
Watchdog_Interval rtems_interval
This type represents clock tick intervals.
Definition: types.h:114
rtems_status_code _Semaphore_MP_Obtain(rtems_id id, rtems_option option_set, rtems_interval timeout)
Issues a remote rtems_semaphore_obtain() request.
Definition: semmp.c:150
void _Semaphore_Core_semaphore_mp_support(Thread_Control *the_thread, Objects_Id id)
Semaphore Core MP Support.
Definition: semmp.c:335
Semaphore_MP_Remote_operations
Definition: semmp.h:64
void _Semaphore_Core_mutex_mp_support(Thread_Control *the_thread, Objects_Id id)
Semaphore Core Mutex MP Support.
Definition: semmp.c:321
void _Semaphore_MP_Send_object_was_deleted(Thread_Control *the_proxy, Objects_Id mp_id)
Semaphore MP Send Object was Deleted.
Definition: semmp.c:292
void _Semaphore_MP_Send_process_packet(Semaphore_MP_Remote_operations operation, Objects_Id semaphore_id, rtems_name name, Objects_Id proxy_id)
Semaphore MP Send Process Packet.
Definition: semmp.c:57
rtems_status_code _Semaphore_MP_Release(rtems_id id)
Issues a remote rtems_semaphore_release() request.
Definition: semmp.c:164
Objects_Information _Semaphore_Information
The Classic Semaphore objects information.
bool _Objects_MP_Is_remote(Objects_Id id, const Objects_Information *information)
Checks if the object identifier is in the global object identifier cache of the specified object info...
Definition: objectmp.c:368
uint32_t Objects_Id
Definition: object.h:101