00001 /*<std-header orig-src='shore'> 00002 00003 $Id: tid_t.cpp,v 1.20 2010/12/08 17:37:34 nhall Exp $ 00004 00005 SHORE -- Scalable Heterogeneous Object REpository 00006 00007 Copyright (c) 1994-99 Computer Sciences Department, University of 00008 Wisconsin -- Madison 00009 All Rights Reserved. 00010 00011 Permission to use, copy, modify and distribute this software and its 00012 documentation is hereby granted, provided that both the copyright 00013 notice and this permission notice appear in all copies of the 00014 software, derivative works or modified versions, and any portions 00015 thereof, and that both notices appear in supporting documentation. 00016 00017 THE AUTHORS AND THE COMPUTER SCIENCES DEPARTMENT OF THE UNIVERSITY 00018 OF WISCONSIN - MADISON ALLOW FREE USE OF THIS SOFTWARE IN ITS 00019 "AS IS" CONDITION, AND THEY DISCLAIM ANY LIABILITY OF ANY KIND 00020 FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. 00021 00022 This software was developed with support by the Advanced Research 00023 Project Agency, ARPA order number 018 (formerly 8230), monitored by 00024 the U.S. Army Research Laboratory under contract DAAB07-91-C-Q518. 00025 Further funding for this work was provided by DARPA through 00026 Rome Research Laboratory Contract No. F30602-97-2-0247. 00027 00028 */ 00029 00030 #include "w_defines.h" 00031 00032 /* -- do not edit anything above this line -- </std-header>*/ 00033 00034 #ifdef __GNUG__ 00035 #pragma implementation "tid_t.h" 00036 #endif 00037 00038 #include <w_stream.h> 00039 #include "basics.h" 00040 #include "tid_t.h" 00041 00042 const tid_t tid_t::null(0, 0); 00043 const tid_t tid_t::Max(tid_t::hwm, tid_t::hwm); 00044 00045 #ifdef EXPLICIT_TEMPLATE 00046 template class opaque_quantity<max_gtid_len>; 00047 template class opaque_quantity<max_server_handle_len>; 00048 00049 template ostream &operator<<(ostream &, const opaque_quantity<max_gtid_len> &); 00050 template bool operator==(const opaque_quantity<max_gtid_len> &, 00051 const opaque_quantity<max_gtid_len> &); 00052 template ostream &operator<<(ostream &, const opaque_quantity<max_server_handle_len> &); 00053 template bool operator==(const opaque_quantity<max_server_handle_len> &, 00054 const opaque_quantity<max_server_handle_len> &); 00055 #endif 00056 00057