ncbi_lbsmd_stub.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_lbsmd_stub.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:38:12  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: ncbi_lbsmd_stub.c,v 1000.0 2003/10/29 16:38:12 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anton Lavrentiev
  35.  *
  36.  * File Description:
  37.  *   Dummy LBSMD mapper for non-UNIX and non-inhouse platforms.
  38.  *
  39.  */
  40. #include "ncbi_lbsmd.h"
  41. const SSERV_VTable* SERV_LBSMD_Open(SERV_ITER iter,
  42.                                     SSERV_Info** info, HOST_INFO* hinfo)
  43. {
  44.     return 0;
  45. }
  46. char* SERV_LBSMD_GetConfig(void)
  47. {
  48.     return 0;
  49. }
  50. int LBSM_HINFO_CpuCount(const void* load_ptr)
  51. {
  52.     return -1;
  53. }
  54. int LBSM_HINFO_TaskCount(const void* load_ptr)
  55. {
  56.     return -1;
  57. }
  58. int/*bool*/ LBSM_HINFO_LoadAverage(const void* load_ptr, double lavg[2])
  59. {
  60.     return 0/*failure*/;
  61. }
  62. int/*bool*/ LBSM_HINFO_Status(const void* load_ptr, double status[2])
  63. {
  64.     return 0/*failure*/;
  65. }
  66. int/*bool*/ LBSM_HINFO_BLASTParams(const void* load_ptr, unsigned int blast[8])
  67. {
  68.     return 0/*failure*/;
  69. }
  70. /*
  71.  * --------------------------------------------------------------------------
  72.  * $Log: ncbi_lbsmd_stub.c,v $
  73.  * Revision 1000.0  2003/10/29 16:38:12  gouriano
  74.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.6
  75.  *
  76.  * Revision 6.6  2003/08/11 19:08:56  lavr
  77.  * Mention "non-inhouse" in file description
  78.  *
  79.  * Revision 6.5  2002/10/28 20:12:57  lavr
  80.  * Module renamed and host info API included
  81.  *
  82.  * Revision 6.4  2002/10/11 19:52:57  lavr
  83.  * +SERV_LBSMD_GetConfig()
  84.  *
  85.  * Revision 6.3  2002/04/13 06:40:44  lavr
  86.  * Few tweaks to reduce the number of syscalls made
  87.  *
  88.  * Revision 6.2  2001/09/10 21:25:35  lavr
  89.  * Unimportant code style compliance change
  90.  *
  91.  * Revision 6.1  2000/10/06 18:06:03  lavr
  92.  * Initial revision
  93.  *
  94.  * ==========================================================================
  95.  */