00001 // 00002 // messshm.h 00003 // 00004 // Copyright (C) 1996 Limit Point Systems, Inc. 00005 // 00006 // Author: Curtis Janssen <cljanss@limitpt.com> 00007 // Maintainer: LPS 00008 // 00009 // This file is part of the SC Toolkit. 00010 // 00011 // The SC Toolkit is free software; you can redistribute it and/or modify 00012 // it under the terms of the GNU Library General Public License as published by 00013 // the Free Software Foundation; either version 2, or (at your option) 00014 // any later version. 00015 // 00016 // The SC Toolkit is distributed in the hope that it will be useful, 00017 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 // GNU Library General Public License for more details. 00020 // 00021 // You should have received a copy of the GNU Library General Public License 00022 // along with the SC Toolkit; see the file COPYING.LIB. If not, write to 00023 // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 00024 // 00025 // The U.S. Government is granted a limited license as per AL 91-7. 00026 // 00027 00028 #ifndef _util_group_messshm_h 00029 #define _util_group_messshm_h 00030 00031 #include <util/group/message.h> 00032 00048 class ShmMessageGrp: public intMessageGrp { 00049 protected: 00050 void basic_send(int target, int type, void* data, int nbyte); 00051 void basic_recv(int type, void* data, int nbyte); 00052 int basic_probe(int type); 00053 void initialize(int nprocs); 00054 void initialize(); 00055 00056 // Information about the last message received or probed. 00057 int last_type_; 00058 int last_source_; 00059 int last_size_; // the size in bytes 00060 00061 void set_last_type(int a) { last_type_ = a; } 00062 void set_last_source(int a) { last_source_ = a; } 00063 void set_last_size(int a) { last_size_ = a; } 00064 public: 00065 ShmMessageGrp(); // read nprocs from environmental variable NUMPROC 00066 ShmMessageGrp(const Ref<KeyVal>&); 00067 ShmMessageGrp(int nprocs); 00068 ~ShmMessageGrp(); 00069 void sync(); 00070 00071 int last_source(); 00072 int last_size(); 00073 int last_type(); 00074 }; 00075 00076 #endif 00077 00078 // Local Variables: 00079 // mode: c++ 00080 // c-file-style: "CLJ" 00081 // End: