~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/gdi/pack_job_delivery.c

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 * 
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 * 
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 * 
 
9
 * 
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 * 
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 * 
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 * 
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 * 
 
28
 *   All Rights Reserved.
 
29
 * 
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
 
 
33
#include "cull/cull.h"
 
34
 
 
35
#include "sgeobj/sge_feature.h"
 
36
 
 
37
#include "pack_job_delivery.h"
 
38
 
 
39
/****** pack_job_delivery/pack_job_delivery() **********************************
 
40
*  NAME
 
41
*     pack_job_delivery() -- pack a job to be sent to execd
 
42
*
 
43
*  SYNOPSIS
 
44
*     int pack_job_delivery(sge_pack_buffer *pb, lListElem *jep, lList *qlp, 
 
45
*     lListElem *pep) 
 
46
*
 
47
*  FUNCTION
 
48
*     This function is used in qmaster and by qrsh -inherit to deliver
 
49
*     jobs to execd's.
 
50
*
 
51
*  INPUTS
 
52
*     sge_pack_buffer *pb - packing buffer
 
53
*     lListElem *jep      - JB_Type
 
54
*
 
55
*  RESULT
 
56
*     int - PACK_SUCCESS on success
 
57
*
 
58
*  NOTES
 
59
*     MT-NOTE: pack_job_delivery() is MT safe
 
60
*******************************************************************************/
 
61
int pack_job_delivery(sge_pack_buffer *pb, lListElem *jep)
 
62
{
 
63
   int ret;
 
64
 
 
65
   if ((ret=packint(pb, feature_get_active_featureset_id()))) {
 
66
      return ret;  
 
67
   }
 
68
   if ((ret=cull_pack_elem(pb, jep)) != PACK_SUCCESS) {
 
69
      return ret;
 
70
   }
 
71
   return PACK_SUCCESS;
 
72
}
 
73