2004-10-25 23:53:44 +04:00
|
|
|
/*
|
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.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-25 23:53:44 +04:00
|
|
|
* $HEADER$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
*
|
2005-03-14 23:57:21 +03:00
|
|
|
* A hash table indexed by orte_process_name_t.
|
2004-10-25 23:53:44 +04:00
|
|
|
*/
|
|
|
|
|
2005-07-19 16:25:19 +04:00
|
|
|
#ifndef ORTE_PROC_TABLE_H
|
|
|
|
#define ORTE_PROC_TABLE_H
|
2004-10-25 23:53:44 +04:00
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/class/opal_hash_table.h"
|
2005-07-19 16:25:19 +04:00
|
|
|
#include "orte/mca/ns/ns_types.h"
|
2004-10-25 23:53:44 +04:00
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2005-03-14 23:57:21 +03:00
|
|
|
* Retrieve value via orte_process_name_t key.
|
2004-10-25 23:53:44 +04:00
|
|
|
*
|
|
|
|
* @param table The input hash table (IN).
|
|
|
|
* @param key The input key (IN).
|
|
|
|
* @return The value associated with the key or NULL if the item is not found.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-07-19 16:25:19 +04:00
|
|
|
OMPI_DECLSPEC void *orte_hash_table_get_proc(
|
2005-07-03 20:52:32 +04:00
|
|
|
opal_hash_table_t* table,
|
2005-03-14 23:57:21 +03:00
|
|
|
const orte_process_name_t* key);
|
2004-10-25 23:53:44 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set value based on uint32_t key.
|
|
|
|
*
|
|
|
|
* @param table The input hash table (IN).
|
|
|
|
* @param key The input key (IN).
|
|
|
|
* @param value The value to be associated with the key (IN).
|
|
|
|
* @return OMPI return code.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-07-19 16:25:19 +04:00
|
|
|
OMPI_DECLSPEC int orte_hash_table_set_proc(
|
2005-07-03 20:52:32 +04:00
|
|
|
opal_hash_table_t* table,
|
2005-03-14 23:57:21 +03:00
|
|
|
const orte_process_name_t*,
|
2004-10-25 23:53:44 +04:00
|
|
|
void* value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove value based on uint32_t key.
|
|
|
|
*
|
|
|
|
* @param table The input hash table (IN).
|
|
|
|
* @param key The input key (IN).
|
|
|
|
* @return OMPI return code.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-07-19 16:25:19 +04:00
|
|
|
OMPI_DECLSPEC int orte_hash_table_remove_proc(
|
2005-07-03 20:52:32 +04:00
|
|
|
opal_hash_table_t* table,
|
2005-03-14 23:57:21 +03:00
|
|
|
const orte_process_name_t* key);
|
2004-10-25 23:53:44 +04:00
|
|
|
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* OMPI_HASH_TABLE_H */
|