2005-05-01 04:53:00 +04:00
|
|
|
/* -*- C -*-
|
|
|
|
*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2006-02-07 06:32:36 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2005-05-01 04:53:00 +04:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* Additional copyrights may follow
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* Data packing subsystem.
|
|
|
|
*/
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#ifndef OPAL_DSS_H_
|
|
|
|
#define OPAL_DSS_H_
|
2005-05-01 04:53:00 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal_config.h"
|
2005-05-01 04:53:00 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/types.h"
|
2005-05-01 04:53:00 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/dss/dss_types.h"
|
2005-05-01 04:53:00 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
BEGIN_C_DECLS
|
Bring over the ORTE 2.0 DSS. This introduces a few changes, almost all of which are transparent to the user:
1. Introduces a flag for the type of buffer that now allows a user to either have a fully described or a completely non-described buffer. In the latter case, no data type descriptions are included in the buffer. This obviously limits what we can do for debugging purposes, but the intent here was to provide an optimized communications capability for those wanting it.
Note that individual buffers can be designated for either type using the orte_dss.set_buffer_type command. In other words, the buffer type can be set dynamically - it isn't a configuration setting at all. The type will default to fully described. A buffer MUST be empty to set its type - this is checked by the set_buffer_type command, and you will receive an error if you violate that rule.
IMPORTANT NOTE: ORTE 1.x actually will NOT work with non-described buffers. This capability should therefore NOT be used until we tell you it is okay. For now, it is here simply so we can begin bringing over parts of ORTE 2.0. The problem is that ORTE 1.x depends upon the transmission of non-hard-cast data types such as size_t. These "soft" types currently utilize a "peek" function to see their actual type in the buffer - obviously, without description, the system has no idea how to unpack these "soft" types. We will deal with this later - for now, please don't use the non-described buffer option.
2. Introduces the orte_std_cntr_t type. This will become the replacement for the size_t's used throughout ORTE 1.x. At the moment, it is actually typedef'd to size_t for backward compatibility.
3. Introduces the orte_dss.arith API that supports arbitrary arithmetic functions on numeric data types. Calling the function with any other data type will generate an error.
This commit was SVN r11075.
2006-08-01 22:42:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the buffer type.
|
|
|
|
*
|
|
|
|
* The pack/unpack functions can work with two types of buffer - fully
|
|
|
|
* described (i.e., every data object is preceeded by an identifier as
|
|
|
|
* to the type of the object) and non-described (i.e., no type
|
|
|
|
* identifier included). This function allows the caller to set the
|
|
|
|
* buffer type to the specified type - the function first checks to
|
|
|
|
* ensure the buffer is empty as the type cannot be changed once
|
|
|
|
* data has already entered the buffer.
|
|
|
|
*
|
|
|
|
* @param *buffer A pointer to the buffer
|
|
|
|
*
|
|
|
|
* @param type The new buffer type
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS Operation successfully executed
|
Bring over the ORTE 2.0 DSS. This introduces a few changes, almost all of which are transparent to the user:
1. Introduces a flag for the type of buffer that now allows a user to either have a fully described or a completely non-described buffer. In the latter case, no data type descriptions are included in the buffer. This obviously limits what we can do for debugging purposes, but the intent here was to provide an optimized communications capability for those wanting it.
Note that individual buffers can be designated for either type using the orte_dss.set_buffer_type command. In other words, the buffer type can be set dynamically - it isn't a configuration setting at all. The type will default to fully described. A buffer MUST be empty to set its type - this is checked by the set_buffer_type command, and you will receive an error if you violate that rule.
IMPORTANT NOTE: ORTE 1.x actually will NOT work with non-described buffers. This capability should therefore NOT be used until we tell you it is okay. For now, it is here simply so we can begin bringing over parts of ORTE 2.0. The problem is that ORTE 1.x depends upon the transmission of non-hard-cast data types such as size_t. These "soft" types currently utilize a "peek" function to see their actual type in the buffer - obviously, without description, the system has no idea how to unpack these "soft" types. We will deal with this later - for now, please don't use the non-described buffer option.
2. Introduces the orte_std_cntr_t type. This will become the replacement for the size_t's used throughout ORTE 1.x. At the moment, it is actually typedef'd to size_t for backward compatibility.
3. Introduces the orte_dss.arith API that supports arbitrary arithmetic functions on numeric data types. Calling the function with any other data type will generate an error.
This commit was SVN r11075.
2006-08-01 22:42:25 +04:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR_VALUE An appropriate error code
|
Bring over the ORTE 2.0 DSS. This introduces a few changes, almost all of which are transparent to the user:
1. Introduces a flag for the type of buffer that now allows a user to either have a fully described or a completely non-described buffer. In the latter case, no data type descriptions are included in the buffer. This obviously limits what we can do for debugging purposes, but the intent here was to provide an optimized communications capability for those wanting it.
Note that individual buffers can be designated for either type using the orte_dss.set_buffer_type command. In other words, the buffer type can be set dynamically - it isn't a configuration setting at all. The type will default to fully described. A buffer MUST be empty to set its type - this is checked by the set_buffer_type command, and you will receive an error if you violate that rule.
IMPORTANT NOTE: ORTE 1.x actually will NOT work with non-described buffers. This capability should therefore NOT be used until we tell you it is okay. For now, it is here simply so we can begin bringing over parts of ORTE 2.0. The problem is that ORTE 1.x depends upon the transmission of non-hard-cast data types such as size_t. These "soft" types currently utilize a "peek" function to see their actual type in the buffer - obviously, without description, the system has no idea how to unpack these "soft" types. We will deal with this later - for now, please don't use the non-described buffer option.
2. Introduces the orte_std_cntr_t type. This will become the replacement for the size_t's used throughout ORTE 1.x. At the moment, it is actually typedef'd to size_t for backward compatibility.
3. Introduces the orte_dss.arith API that supports arbitrary arithmetic functions on numeric data types. Calling the function with any other data type will generate an error.
This commit was SVN r11075.
2006-08-01 22:42:25 +04:00
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_set_buffer_type_fn_t)(opal_buffer_t *buffer, opal_dss_buffer_type_t type);
|
Bring over the ORTE 2.0 DSS. This introduces a few changes, almost all of which are transparent to the user:
1. Introduces a flag for the type of buffer that now allows a user to either have a fully described or a completely non-described buffer. In the latter case, no data type descriptions are included in the buffer. This obviously limits what we can do for debugging purposes, but the intent here was to provide an optimized communications capability for those wanting it.
Note that individual buffers can be designated for either type using the orte_dss.set_buffer_type command. In other words, the buffer type can be set dynamically - it isn't a configuration setting at all. The type will default to fully described. A buffer MUST be empty to set its type - this is checked by the set_buffer_type command, and you will receive an error if you violate that rule.
IMPORTANT NOTE: ORTE 1.x actually will NOT work with non-described buffers. This capability should therefore NOT be used until we tell you it is okay. For now, it is here simply so we can begin bringing over parts of ORTE 2.0. The problem is that ORTE 1.x depends upon the transmission of non-hard-cast data types such as size_t. These "soft" types currently utilize a "peek" function to see their actual type in the buffer - obviously, without description, the system has no idea how to unpack these "soft" types. We will deal with this later - for now, please don't use the non-described buffer option.
2. Introduces the orte_std_cntr_t type. This will become the replacement for the size_t's used throughout ORTE 1.x. At the moment, it is actually typedef'd to size_t for backward compatibility.
3. Introduces the orte_dss.arith API that supports arbitrary arithmetic functions on numeric data types. Calling the function with any other data type will generate an error.
This commit was SVN r11075.
2006-08-01 22:42:25 +04:00
|
|
|
|
2005-05-01 04:53:00 +04:00
|
|
|
/**
|
|
|
|
* Top-level itnerface function to pack one or more values into a
|
|
|
|
* buffer.
|
|
|
|
*
|
|
|
|
* The pack function packs one or more values of a specified type into
|
|
|
|
* the specified buffer. The buffer must have already been
|
|
|
|
* initialized via an OBJ_NEW or OBJ_CONSTRUCT call - otherwise, the
|
|
|
|
* pack_value function will return an error. Providing an unsupported
|
|
|
|
* type flag will likewise be reported as an error.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* Note that any data to be packed that is not hard type cast (i.e.,
|
|
|
|
* not type cast to a specific size) may lose precision when unpacked
|
2006-02-07 06:32:36 +03:00
|
|
|
* by a non-homogeneous recipient. The DSS will do its best to deal
|
2005-05-01 04:53:00 +04:00
|
|
|
* with heterogeneity issues between the packer and unpacker in such
|
|
|
|
* cases. Sending a number larger than can be handled by the recipient
|
2006-02-07 06:32:36 +03:00
|
|
|
* will return an error code (generated by the DSS upon unpacking) via
|
|
|
|
* the RML upon transmission - the DSS cannot detect such errors
|
2005-05-01 04:53:00 +04:00
|
|
|
* during packing.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @param *buffer A pointer to the buffer into which the value is to
|
|
|
|
* be packed.
|
|
|
|
*
|
|
|
|
* @param *src A void* pointer to the data that is to be packed. Note
|
|
|
|
* that strings are to be passed as (char **) - i.e., the caller must
|
|
|
|
* pass the address of the pointer to the string as the void*. This
|
2006-02-07 06:32:36 +03:00
|
|
|
* allows the DSS to use a single interface function, but still allow
|
2005-05-01 04:53:00 +04:00
|
|
|
* the caller to pass multiple strings in a single call.
|
|
|
|
*
|
|
|
|
* @param num A size_t value indicating the number of values that are
|
|
|
|
* to be packed, beginning at the location pointed to by src. A string
|
|
|
|
* value is counted as a single value regardless of length. The values
|
|
|
|
* must be contiguous in memory. Arrays of pointers (e.g., string
|
|
|
|
* arrays) should be contiguous, although (obviously) the data pointed
|
|
|
|
* to need not be contiguous across array entries.
|
|
|
|
*
|
|
|
|
* @param type The type of the data to be packed - must be one of the
|
2006-02-07 06:32:36 +03:00
|
|
|
* DSS defined data types.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The data was packed as requested.
|
2005-05-01 04:53:00 +04:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate OPAL error code indicating the
|
2005-05-01 04:53:00 +04:00
|
|
|
* problem encountered. This error code should be handled
|
|
|
|
* appropriately.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @code
|
2008-02-28 04:57:57 +03:00
|
|
|
* opal_buffer_t *buffer;
|
2005-05-01 04:53:00 +04:00
|
|
|
* int32_t src;
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* status_code = opal_dss.pack(buffer, &src, 1, OPAL_INT32);
|
2005-05-01 04:53:00 +04:00
|
|
|
* @endcode
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_pack_fn_t)(opal_buffer_t *buffer, const void *src,
|
|
|
|
int32_t num_values,
|
|
|
|
opal_data_type_t type);
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unpack values from a buffer.
|
|
|
|
*
|
|
|
|
* The unpack function unpacks the next value (or values) of a
|
|
|
|
* specified type from the specified buffer.
|
|
|
|
*
|
|
|
|
* The buffer must have already been initialized via an OBJ_NEW or
|
|
|
|
* OBJ_CONSTRUCT call (and assumedly filled with some data) -
|
|
|
|
* otherwise, the unpack_value function will return an
|
|
|
|
* error. Providing an unsupported type flag will likewise be reported
|
|
|
|
* as an error, as will specifying a data type that DOES NOT match the
|
|
|
|
* type of the next item in the buffer. An attempt to read beyond the
|
|
|
|
* end of the stored data held in the buffer will also return an
|
|
|
|
* error.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* NOTE: it is possible for the buffer to be corrupted and that
|
2006-02-07 06:32:36 +03:00
|
|
|
* the DSS will *think* there is a proper variable type at the
|
2005-05-01 04:53:00 +04:00
|
|
|
* beginning of an unpack region - but that the value is bogus (e.g., just
|
|
|
|
* a byte field in a string array that so happens to have a value that
|
|
|
|
* matches the specified data type flag). Therefore, the data type error check
|
|
|
|
* is NOT completely safe. This is true for ALL unpack functions.
|
|
|
|
*
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* Unpacking values is a "destructive" process - i.e., the values are
|
|
|
|
* removed from the buffer, thus reducing the buffer size. It is
|
|
|
|
* therefore not possible for the caller to re-unpack a value from the
|
|
|
|
* same buffer.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* Warning: The caller is responsible for providing adequate memory
|
2008-02-28 04:57:57 +03:00
|
|
|
* storage for the requested data. The opal_dss_peek() function is
|
2005-05-01 04:53:00 +04:00
|
|
|
* provided to assist in meeting this requirement. As noted below, the user
|
|
|
|
* must provide a parameter indicating the maximum number of values that
|
|
|
|
* can be unpacked into the allocated memory. If more values exist in the
|
2006-02-07 06:32:36 +03:00
|
|
|
* buffer than can fit into the memory storage, then the dss will unpack
|
2005-05-01 04:53:00 +04:00
|
|
|
* what it can fit into that location and return an error code indicating
|
|
|
|
* that the buffer was only partially unpacked.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* Note that any data that was not hard type cast (i.e., not type cast
|
|
|
|
* to a specific size) when packed may lose precision when unpacked by
|
2006-02-07 06:32:36 +03:00
|
|
|
* a non-homogeneous recipient. The DSS will do its best to deal with
|
2005-05-01 04:53:00 +04:00
|
|
|
* heterogeneity issues between the packer and unpacker in such
|
|
|
|
* cases. Sending a number larger than can be handled by the recipient
|
2006-02-07 06:32:36 +03:00
|
|
|
* will return an error code (generated by the DSS upon unpacking) via
|
|
|
|
* the RML upon transmission - the DSS cannot detect such errors
|
2005-05-01 04:53:00 +04:00
|
|
|
* during packing.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @param *buffer A pointer to the buffer from which the value will be
|
|
|
|
* extracted.
|
|
|
|
*
|
|
|
|
* @param *dest A void* pointer to the memory location into which the
|
|
|
|
* data is to be stored. Note that these values will be stored
|
|
|
|
* contiguously in memory. For strings, this pointer must be to (char
|
|
|
|
* **) to provide a means of supporting multiple string
|
2006-02-07 06:32:36 +03:00
|
|
|
* operations. The DSS unpack function will allocate memory for each
|
2005-05-01 04:53:00 +04:00
|
|
|
* string in the array - the caller must only provide adequate memory
|
|
|
|
* for the array of pointers.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @param *num A pointer to a int32_t value indicating the maximum
|
2005-05-01 04:53:00 +04:00
|
|
|
* number of values that are to be unpacked, beginning at the location
|
|
|
|
* pointed to by src. This is provided to help protect the caller from
|
|
|
|
* memory overrun. Note that a string
|
|
|
|
* value is counted as a single value regardless of length.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @note The unpack function will return the actual number of values
|
|
|
|
* unpacked in this location.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @param type The type of the data to be unpacked - must be one of
|
2006-02-07 06:32:36 +03:00
|
|
|
* the DSS defined data types.
|
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @retval *max_num_values The number of values actually unpacked. In
|
|
|
|
* most cases, this should match the maximum number provided in the
|
|
|
|
* parameters - but in no case will it exceed the value of this
|
|
|
|
* parameter. Note that if you unpack fewer values than are actually
|
2006-02-07 06:32:36 +03:00
|
|
|
* available, the buffer will be in an unpackable state - the dss will
|
2005-05-01 04:53:00 +04:00
|
|
|
* return an error code to warn of this condition.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The next item in the buffer was successfully
|
2005-05-01 04:53:00 +04:00
|
|
|
* unpacked.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) The unpack function returns an error code
|
2005-05-01 04:53:00 +04:00
|
|
|
* under one of several conditions: (a) the number of values in the
|
|
|
|
* item exceeds the max num provided by the caller; (b) the type of
|
|
|
|
* the next item in the buffer does not match the type specified by
|
|
|
|
* the caller; or (c) the unpack failed due to either an error in the
|
|
|
|
* buffer or an attempt to read past the end of the buffer.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @code
|
2008-02-28 04:57:57 +03:00
|
|
|
* opal_buffer_t *buffer;
|
2005-05-01 04:53:00 +04:00
|
|
|
* int32_t dest;
|
|
|
|
* char **string_array;
|
2008-02-28 04:57:57 +03:00
|
|
|
* int32_t num_values;
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* num_values = 1;
|
2008-02-28 04:57:57 +03:00
|
|
|
* status_code = opal_dss.unpack(buffer, (void*)&dest, &num_values, OPAL_INT32);
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* num_values = 5;
|
|
|
|
* string_array = malloc(num_values*sizeof(char *));
|
2008-02-28 04:57:57 +03:00
|
|
|
* status_code = opal_dss.unpack(buffer, (void*)(string_array), &num_values, OPAL_STRING);
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @endcode
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_unpack_fn_t)(opal_buffer_t *buffer, void *dest,
|
|
|
|
int32_t *max_num_values,
|
|
|
|
opal_data_type_t type);
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the type and number of values of the next item in the buffer.
|
|
|
|
*
|
|
|
|
* The peek function looks at the next item in the buffer and returns
|
|
|
|
* both its type and the number of values in the item. This is a
|
|
|
|
* non-destructive function call that does not disturb the buffer, so
|
|
|
|
* it can be called multiple times if desired.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @param buffer A pointer to the buffer in question.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @param type A pointer to an opal_data_type_t variable where the
|
2005-05-01 04:53:00 +04:00
|
|
|
* type of the next item in the buffer is to be stored. Caller must
|
|
|
|
* have memory backing this location.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @param number A pointer to a int32_t variable where the number of
|
2005-05-01 04:53:00 +04:00
|
|
|
* data values in the next item is to be stored. Caller must have
|
|
|
|
* memory backing this location.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS Requested info was successfully returned.
|
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code indicating the
|
2005-05-01 04:53:00 +04:00
|
|
|
* problem will be returned. This should be handled appropriately by
|
|
|
|
* the caller.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_peek_next_item_fn_t)(opal_buffer_t *buffer,
|
|
|
|
opal_data_type_t *type,
|
|
|
|
int32_t *number);
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unload the data payload from a buffer.
|
|
|
|
*
|
|
|
|
* The unload function provides the caller with a pointer to the data
|
|
|
|
* payload within the buffer and the size of that payload. This allows
|
|
|
|
* the user to directly access the payload - typically used in the RML
|
|
|
|
* to unload the payload from the buffer for transmission.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @note This is a destructive operation. While the payload is
|
|
|
|
* undisturbed, the function will clear the buffer's pointers to the
|
|
|
|
* payload. Thus, the buffer and the payload are completely separated,
|
|
|
|
* leaving the caller free to OBJ_RELEASE the buffer.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @param buffer A pointer to the buffer whose payload is to be
|
|
|
|
* unloaded.
|
|
|
|
*
|
|
|
|
* @param payload The address to a void* pointer that is to be loaded
|
|
|
|
* with the address of the data payload in the buffer.
|
|
|
|
*
|
|
|
|
* @param size The size (in bytes) of the data payload in the buffer.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The request was succesfully completed.
|
2005-05-01 04:53:00 +04:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code indicating the
|
2005-05-01 04:53:00 +04:00
|
|
|
* problem will be returned. This should be handled appropriately by
|
|
|
|
* the caller.
|
|
|
|
*
|
|
|
|
* @code
|
2008-02-28 04:57:57 +03:00
|
|
|
* opal_buffer_t *buffer;
|
2005-05-01 04:53:00 +04:00
|
|
|
* uint8_t *bytes;
|
2008-02-28 04:57:57 +03:00
|
|
|
* int32_t size;
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* status_code = opal_dss.unload(buffer, (void**)(&bytes), &size);
|
2005-05-01 04:53:00 +04:00
|
|
|
* OBJ_RELEASE(buffer);
|
|
|
|
* @endcode
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_unload_fn_t)(opal_buffer_t *buffer,
|
2005-05-01 04:53:00 +04:00
|
|
|
void **payload,
|
2008-02-28 04:57:57 +03:00
|
|
|
int32_t *size);
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a data payload into a buffer.
|
|
|
|
*
|
|
|
|
* The load function allows the caller to replace the payload in a
|
|
|
|
* buffer with one provided by the caller. If a payload already exists
|
|
|
|
* in the buffer, the function will "free" the existing data to
|
|
|
|
* release it, and then replace the data payload with the one provided
|
|
|
|
* by the caller.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @note The buffer must be allocated in advance via the OBJ_NEW
|
|
|
|
* function call - failing to do so will cause the load function to
|
|
|
|
* return an error code.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @note The caller is responsible for pre-packing the provided
|
|
|
|
* payload - the load function cannot convert to network byte order
|
|
|
|
* any data contained in the provided payload.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2005-05-01 04:53:00 +04:00
|
|
|
* @param buffer A pointer to the buffer into which lthe payload is to
|
|
|
|
* be loaded.
|
|
|
|
*
|
|
|
|
* @param payload A void* pointer to the payload to be loaded into the
|
|
|
|
* buffer.
|
|
|
|
*
|
|
|
|
* @param size The size (in bytes) of the provided payload.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The request was successfully completed
|
2005-05-01 04:53:00 +04:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code indicating the
|
2005-05-01 04:53:00 +04:00
|
|
|
* problem will be returned. This should be handled appropriately by
|
|
|
|
* the caller.
|
|
|
|
*
|
|
|
|
* @code
|
2008-02-28 04:57:57 +03:00
|
|
|
* opal_buffer_t *buffer;
|
2005-05-01 04:53:00 +04:00
|
|
|
* uint8_t bytes;
|
2008-02-28 04:57:57 +03:00
|
|
|
* int32_t size;
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* buffer = OBJ_NEW(opal_buffer_t);
|
|
|
|
* status_code = opal_dss.load(buffer, (void*)(&bytes), size);
|
2005-05-01 04:53:00 +04:00
|
|
|
* @endcode
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_load_fn_t)(opal_buffer_t *buffer,
|
2005-05-01 04:53:00 +04:00
|
|
|
void *payload,
|
2008-02-28 04:57:57 +03:00
|
|
|
int32_t size);
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
|
Commit the orted-failed-to-start code. This correctly causes the system to detect the failure of an orted to start and allows the system to terminate all procs/orteds that *did* start.
The primary change that underlies all this is in the OOB. Specifically, the problem in the code until now has been that the OOB attempts to resolve an address when we call the "send" to an unknown recipient. The OOB would then wait forever if that recipient never actually started (and hence, never reported back its OOB contact info). In the case of an orted that failed to start, we would correctly detect that the orted hadn't started, but then we would attempt to order all orteds (including the one that failed to start) to die. This would cause the OOB to "hang" the system.
Unfortunately, revising how the OOB resolves addresses introduced a number of additional problems. Specifically, and most troublesome, was the fact that comm_spawn involved the immediate transmission of the rendezvous point from parent-to-child after the child was spawned. The current code used the OOB address resolution as a "barrier" - basically, the parent would attempt to send the info to the child, and then "hold" there until the child's contact info had arrived (meaning the child had started) and the send could be completed.
Note that this also caused comm_spawn to "hang" the entire system if the child never started... The app-failed-to-start helped improve that behavior - this code provides additional relief.
With this change, the OOB will return an ADDRESSEE_UNKNOWN error if you attempt to send to a recipient whose contact info isn't already in the OOB's hash tables. To resolve comm_spawn issues, we also now force the cross-sharing of connection info between parent and child jobs during spawn.
Finally, to aid in setting triggers to the right values, we introduce the "arith" API for the GPR. This function allows you to atomically change the value in a registry location (either divide, multiply, add, or subtract) by the provided operand. It is equivalent to first fetching the value using a "get", then modifying it, and then putting the result back into the registry via a "put".
This commit was SVN r14711.
2007-05-21 22:31:28 +04:00
|
|
|
/**
|
|
|
|
* Copy a payload from one buffer to another
|
|
|
|
* This function will append a copy of the payload in one buffer into
|
|
|
|
* another buffer. If the destination buffer is NOT empty, then the
|
|
|
|
* type of the two buffers MUST match or else an
|
|
|
|
* error will be returned. If the destination buffer IS empty, then
|
|
|
|
* its type will be set to that of the source buffer.
|
|
|
|
* NOTE: This is NOT a destructive procedure - the
|
|
|
|
* source buffer's payload will remain intact, as will any pre-existing
|
|
|
|
* payload in the destination's buffer.
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_copy_payload_fn_t)(opal_buffer_t *dest,
|
|
|
|
opal_buffer_t *src);
|
Commit the orted-failed-to-start code. This correctly causes the system to detect the failure of an orted to start and allows the system to terminate all procs/orteds that *did* start.
The primary change that underlies all this is in the OOB. Specifically, the problem in the code until now has been that the OOB attempts to resolve an address when we call the "send" to an unknown recipient. The OOB would then wait forever if that recipient never actually started (and hence, never reported back its OOB contact info). In the case of an orted that failed to start, we would correctly detect that the orted hadn't started, but then we would attempt to order all orteds (including the one that failed to start) to die. This would cause the OOB to "hang" the system.
Unfortunately, revising how the OOB resolves addresses introduced a number of additional problems. Specifically, and most troublesome, was the fact that comm_spawn involved the immediate transmission of the rendezvous point from parent-to-child after the child was spawned. The current code used the OOB address resolution as a "barrier" - basically, the parent would attempt to send the info to the child, and then "hold" there until the child's contact info had arrived (meaning the child had started) and the send could be completed.
Note that this also caused comm_spawn to "hang" the entire system if the child never started... The app-failed-to-start helped improve that behavior - this code provides additional relief.
With this change, the OOB will return an ADDRESSEE_UNKNOWN error if you attempt to send to a recipient whose contact info isn't already in the OOB's hash tables. To resolve comm_spawn issues, we also now force the cross-sharing of connection info between parent and child jobs during spawn.
Finally, to aid in setting triggers to the right values, we introduce the "arith" API for the GPR. This function allows you to atomically change the value in a registry location (either divide, multiply, add, or subtract) by the provided operand. It is equivalent to first fetching the value using a "get", then modifying it, and then putting the result back into the registry via a "put".
This commit was SVN r14711.
2007-05-21 22:31:28 +04:00
|
|
|
|
2005-05-01 04:53:00 +04:00
|
|
|
/**
|
2006-02-07 06:32:36 +03:00
|
|
|
* DSS initialization function.
|
2005-05-01 04:53:00 +04:00
|
|
|
*
|
|
|
|
* In dynamic libraries, declared objects and functions don't get
|
2008-02-28 04:57:57 +03:00
|
|
|
* loaded until called. We need to ensure that the opal_dss function
|
2005-05-01 04:53:00 +04:00
|
|
|
* structure gets loaded, so we provide an "open" call that is
|
|
|
|
* executed as part of the program startup.
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
OPAL_DECLSPEC int opal_dss_open(void);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* DSS finalize function
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
OPAL_DECLSPEC int opal_dss_close(void);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
/**
|
2006-02-07 06:32:36 +03:00
|
|
|
* Copy a data value from one location to another.
|
2005-05-01 04:53:00 +04:00
|
|
|
*
|
2006-02-07 06:32:36 +03:00
|
|
|
* Since registered data types can be complex structures, the system
|
|
|
|
* needs some way to know how to copy the data from one location to
|
|
|
|
* another (e.g., for storage in the registry). This function, which
|
|
|
|
* can call other copy functions to build up complex data types, defines
|
|
|
|
* the method for making a copy of the specified data type.
|
|
|
|
*
|
|
|
|
* @param **dest The address of a pointer into which the
|
|
|
|
* address of the resulting data is to be stored.
|
|
|
|
*
|
|
|
|
* @param *src A pointer to the memory location from which the
|
|
|
|
* data is to be copied.
|
|
|
|
*
|
|
|
|
* @param type The type of the data to be copied - must be one of
|
|
|
|
* the DSS defined data types.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The value was successfully copied.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code.
|
2005-05-01 04:53:00 +04:00
|
|
|
*
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_copy_fn_t)(void **dest, void *src, opal_data_type_t type);
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
/**
|
2006-02-07 06:32:36 +03:00
|
|
|
* Compare two data values.
|
|
|
|
*
|
|
|
|
* Since registered data types can be complex structures, the system
|
|
|
|
* needs some way to know how to compare two data values (e.g., when
|
|
|
|
* trying to order them in some fashion). This function, which
|
|
|
|
* can call other compare functions to build up complex data types, defines
|
|
|
|
* the method for comparing two values of the specified data type.
|
|
|
|
*
|
|
|
|
* @retval -1 Indicates first value is greater than second value
|
|
|
|
* @retval 0 Indicates two values are equal
|
|
|
|
* @retval +1 Indicates second value is greater than first value
|
2005-05-01 04:53:00 +04:00
|
|
|
*/
|
2008-05-05 23:12:01 +04:00
|
|
|
typedef int (*opal_dss_compare_fn_t)(const void *value1, const void *value2,
|
2008-02-28 04:57:57 +03:00
|
|
|
opal_data_type_t type);
|
2005-05-01 04:53:00 +04:00
|
|
|
|
|
|
|
|
2005-05-01 04:58:06 +04:00
|
|
|
/**
|
2006-02-07 06:32:36 +03:00
|
|
|
* Compute size of data value.
|
2005-05-01 04:58:06 +04:00
|
|
|
*
|
2006-02-07 06:32:36 +03:00
|
|
|
* Since registered data types can be complex structures, the system
|
|
|
|
* needs some way to compute its size. Some of these types, however, involve
|
|
|
|
* variable amounts of storage (e.g., a string!). Hence, a pointer to the
|
|
|
|
* actual object being "sized" needs to be passed as well.
|
|
|
|
*
|
|
|
|
* @param size Address of a size_t value where the size of the data value
|
|
|
|
* (in bytes) will be stored - set to zero in event of error.
|
|
|
|
*
|
|
|
|
* @param *src A pointer to the memory location of the data object. It is okay
|
|
|
|
* for this to be NULL - if NULL, the function must return the size of the object
|
|
|
|
* itself, not including any data contained in its fields.
|
|
|
|
*
|
|
|
|
* @param type The type of the data value - must be one of
|
|
|
|
* the DSS defined data types or an error will be returned.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The value was successfully copied.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code.
|
2006-02-07 06:32:36 +03:00
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_size_fn_t)(size_t *size, void *src, opal_data_type_t type);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Print a data value.
|
|
|
|
*
|
|
|
|
* Since registered data types can be complex structures, the system
|
|
|
|
* needs some way to know how to print them (i.e., convert them to a string
|
|
|
|
* representation).
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The value was successfully printed.
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code.
|
2006-02-07 06:32:36 +03:00
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_print_fn_t)(char **output, char *prefix, void *src, opal_data_type_t type);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
|
|
|
|
2006-10-03 12:40:35 +04:00
|
|
|
/**
|
|
|
|
* Print a data value to an output stream for debugging purposes
|
|
|
|
*
|
|
|
|
* Uses the dss.print command to obtain a string version of the data value
|
|
|
|
* and prints it to the designated output stream.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The value was successfully printed.
|
2006-10-03 12:40:35 +04:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code.
|
2006-10-03 12:40:35 +04:00
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_dump_fn_t)(int output_stream, void *src, opal_data_type_t type);
|
2006-10-03 12:40:35 +04:00
|
|
|
|
2006-02-07 06:32:36 +03:00
|
|
|
/**
|
|
|
|
* Set a data value
|
|
|
|
*
|
|
|
|
* Since the data values are stored in an opaque manner, the system needs
|
|
|
|
* a function by which it can set the data value to a specific value. This
|
|
|
|
* is the equivalent to a C++ access function.
|
|
|
|
*
|
|
|
|
* NOTE: this function does NOT allocate any memory. It only sets the value pointer
|
|
|
|
* and type to the specified location and type. Use "copy" if you want dynamic allocation
|
|
|
|
* of storage.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The value was successfully stored
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code.
|
2006-02-07 06:32:36 +03:00
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_set_fn_t)(opal_dss_value_t *value, void *new_value, opal_data_type_t type);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a data value
|
|
|
|
*
|
|
|
|
* Since the data values are stored in an opaque manner, the system needs
|
|
|
|
* a function by which it can get the data value from within the data_value object. This
|
|
|
|
* is the equivalent to a C++ access function.
|
|
|
|
*
|
|
|
|
* NOTE: this function does NOT allocate any memory. It simply points the "data" location
|
|
|
|
* to that of the value, after ensuring that the value's type matches the specified one.
|
|
|
|
* Use "copy" if you want dynamic allocation of memory.
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_SUCCESS The value was successfully retrieved
|
2006-02-07 06:32:36 +03:00
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @retval OPAL_ERROR(s) An appropriate error code - usually caused by the specified type
|
2006-02-07 06:32:36 +03:00
|
|
|
* not matching the data type within the stored object.
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_get_fn_t)(void **data, opal_dss_value_t *value, opal_data_type_t type);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Release the storage used by a data value
|
|
|
|
*
|
|
|
|
* Since the data values are stored in an opaque manner, the system needs
|
|
|
|
* a function by which it can release the storage associated with a value
|
|
|
|
* stored in a data value object.
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef void (*opal_dss_release_fn_t)(opal_dss_value_t *value);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a set of data handling functions.
|
|
|
|
*
|
|
|
|
* * This function registers a set of data type functions for a specific
|
|
|
|
* type. An integer is returned that should be used a an argument to
|
2008-02-28 04:57:57 +03:00
|
|
|
* future invocations of opal_dss.pack(), opal_dss.unpack(), opal_dss.copy(),
|
|
|
|
* and opal_dss.compare, which
|
2006-02-07 06:32:36 +03:00
|
|
|
* will trigger calls to the appropriate functions. This
|
|
|
|
* is most useful when extending the datatypes that the dss can
|
2008-02-28 04:57:57 +03:00
|
|
|
* handle; pack and unpack functions can nest calls to opal_dss.pack()
|
|
|
|
* / opal_dss.unpack(), so defining small pack/unpack functions can be
|
2006-02-07 06:32:36 +03:00
|
|
|
* used recursively to build larger types (e.g., packing/unpacking
|
2008-02-28 04:57:57 +03:00
|
|
|
* structs can use calls to opal_dss.pack()/unpack() to serialize /
|
2006-02-07 06:32:36 +03:00
|
|
|
* deserialize individual members). This is likewise true for the copy
|
|
|
|
* and compare functions.
|
|
|
|
*
|
|
|
|
* @param release_fn [IN] Function pointer to the release routine
|
2005-05-01 04:58:06 +04:00
|
|
|
* @param pack_fn [IN] Function pointer to the pack routine
|
|
|
|
* @param unpack_fn [IN] Function pointer to the unpack routine
|
2006-02-07 06:32:36 +03:00
|
|
|
* @param copy_fn [IN] Function pointer to copy routine
|
|
|
|
* @param compare_fn [IN] Function pointer to compare routine
|
|
|
|
* @param size_fn [IN] Function pointer to size routine
|
|
|
|
* @param print_fn [IN] Function pointer to print routine
|
|
|
|
* @param structured [IN] Boolean indicator as to whether or not the data is structured. A true
|
|
|
|
* value indicates that this data type is always passed via reference (i.e., a pointer to the
|
|
|
|
* object is passed) as opposed to directly (e.g., the way an int32_t would appear)
|
2005-05-01 04:58:06 +04:00
|
|
|
* @param name [IN] String name for this pair (mainly for debugging)
|
|
|
|
* @param type [OUT] Type number for this registration
|
|
|
|
*
|
2008-02-28 04:57:57 +03:00
|
|
|
* @returns OPAL_SUCCESS upon success
|
2005-05-01 04:58:06 +04:00
|
|
|
*
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef int (*opal_dss_register_fn_t)(opal_dss_pack_fn_t pack_fn,
|
|
|
|
opal_dss_unpack_fn_t unpack_fn,
|
|
|
|
opal_dss_copy_fn_t copy_fn,
|
|
|
|
opal_dss_compare_fn_t compare_fn,
|
|
|
|
opal_dss_size_fn_t size_fn,
|
|
|
|
opal_dss_print_fn_t print_fn,
|
|
|
|
opal_dss_release_fn_t release_fn,
|
2006-02-07 06:32:36 +03:00
|
|
|
bool structured,
|
2008-02-28 04:57:57 +03:00
|
|
|
const char *name, opal_data_type_t *type);
|
2005-05-01 04:58:06 +04:00
|
|
|
/*
|
|
|
|
* This function looks up the string name corresponding to the identified
|
|
|
|
* data type - used for debugging messages.
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef char* (*opal_dss_lookup_data_type_fn_t)(opal_data_type_t type);
|
2006-02-07 06:32:36 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Dump the data type list - used for debugging to see what has been registered
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef void (*opal_dss_dump_data_types_fn_t)(int output);
|
|
|
|
|
2005-05-01 04:58:06 +04:00
|
|
|
|
2005-05-01 04:53:00 +04:00
|
|
|
/**
|
2006-02-07 06:32:36 +03:00
|
|
|
* Base structure for the DSS
|
2005-05-01 04:53:00 +04:00
|
|
|
*
|
2006-02-07 06:32:36 +03:00
|
|
|
* Base module structure for the DSS - presents the required function
|
|
|
|
* pointers to the calling interface.
|
2005-05-01 04:53:00 +04:00
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
struct opal_dss_t {
|
|
|
|
opal_dss_set_fn_t set;
|
|
|
|
opal_dss_get_fn_t get;
|
|
|
|
opal_dss_set_buffer_type_fn_t set_buffer_type;
|
|
|
|
opal_dss_pack_fn_t pack;
|
|
|
|
opal_dss_unpack_fn_t unpack;
|
|
|
|
opal_dss_copy_fn_t copy;
|
|
|
|
opal_dss_compare_fn_t compare;
|
|
|
|
opal_dss_size_fn_t size;
|
|
|
|
opal_dss_print_fn_t print;
|
|
|
|
opal_dss_release_fn_t release;
|
|
|
|
opal_dss_peek_next_item_fn_t peek;
|
|
|
|
opal_dss_unload_fn_t unload;
|
|
|
|
opal_dss_load_fn_t load;
|
|
|
|
opal_dss_copy_payload_fn_t copy_payload;
|
|
|
|
opal_dss_register_fn_t register_type;
|
|
|
|
opal_dss_lookup_data_type_fn_t lookup_data_type;
|
|
|
|
opal_dss_dump_data_types_fn_t dump_data_types;
|
|
|
|
opal_dss_dump_fn_t dump;
|
2005-05-01 04:53:00 +04:00
|
|
|
};
|
2008-02-28 04:57:57 +03:00
|
|
|
typedef struct opal_dss_t opal_dss_t;
|
2005-05-01 04:53:00 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
OPAL_DECLSPEC extern opal_dss_t opal_dss; /* holds dss function pointers */
|
2005-05-12 00:21:10 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
END_C_DECLS
|
2005-05-01 04:53:00 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#endif /* OPAL_DSS_H */
|