]> rtime.felk.cvut.cz Git - frescor/frsh-include.git/commitdiff
Fixing a bug in the .h files of shared_objects_types and distributed_types
authortelleriam <telleriam@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Fri, 30 Mar 2007 18:28:52 +0000 (18:28 +0000)
committertelleriam <telleriam@35b4ef3e-fd22-0410-ab77-dab3279adceb>
Fri, 30 Mar 2007 18:28:52 +0000 (18:28 +0000)
that prevented the compilation of dummy programs.

git-svn-id: http://www.frescor.org/private/svn/frescor/frsh/trunk/include@372 35b4ef3e-fd22-0410-ab77-dab3279adceb

frsh_distributed_types.h
frsh_shared_objects_types.h

index 8e1917ee0ab268f4b0878b52d44eb9197533ce43..6dc1a332b6b44e54f980838c72fb9890f96b63af 100644 (file)
@@ -126,6 +126,24 @@ typedef struct {
    int size;
 } frsh_protocol_status_t;
 
+/**
+ * Protocol dependent information about extra parameters for
+ * send_endpoint definition.
+ **/
+typedef struct {
+   void *body;
+   int size;
+} frsh_send_endpoint_protocol_info_t;
+
+/**
+ * Protocol dependent information about extra parameters for
+ * receive_endpoint definition.
+ **/
+typedef struct {
+   void *body;
+   int size;
+} frsh_receive_endpoint_protocol_info_t;
+
 /**
  * Algorithm used when the queue is full to choose the message to reject
  **/
index 669928f1cd9235c41358e763571836a841956867..312a71a2f08607c2091d9ece49754112fcbf45a5 100644 (file)
@@ -95,7 +95,7 @@ typedef FRSH_SHAREDOBJ_HANDLE_T_OPAQUE  frsh_sharedobj_handle_t;
 
 
 #define SHAREDOBJ_LABEL_MAXLENGTH 15
-typedef char frsh_sharedobj_label_t[CONTRACT_LABEL_MAXLENGTH + 1];
+typedef char frsh_sharedobj_label_t[SHAREDOBJ_LABEL_MAXLENGTH + 1];