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

« back to all changes in this revision

Viewing changes to source/libs/wingrid/wingrid.h

  • 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 <pwd.h>
 
34
#include <rpc/rpc.h>
 
35
#include <sys/stat.h>
 
36
#include <sys/statvfs.h>
 
37
 
 
38
#include "basis_types.h"
 
39
 
 
40
 
 
41
int    wl_encrypt(const char *uncrypted, char* encrypted, int bufsize);
 
42
 
 
43
int    wl_getpwuid_ex_r(uid_t uid, struct passwd *pwd, char *buffer,
 
44
                        size_t bufsize, struct passwd **result, uint flags);
 
45
bool   wl_handle_ls_results(const char *name, const char *value, 
 
46
                            const char *host, char *error_buffer);
 
47
 
 
48
uid_t  wl_get_superuser_id();
 
49
gid_t  wl_get_superuser_gid();
 
50
int    wl_get_superuser_name(char *buf, int bufsize);
 
51
bool   wl_is_user_id_superuser(int uid);
 
52
 
 
53
int    wl_setuser(int uid, int gid, const char *pass, char *err_str);
 
54
bool   wl_use_sgepasswd();
 
55
void   wl_set_use_sgepasswd(bool use_it);
 
56
 
 
57
char*  wl_strip_hostname(char *user_name);
 
58
int    wl_build_fq_local_name(const char *user, char *fq_name);
 
59
 
 
60
int    wl_stat(const char *path, struct stat *buf);
 
61
int    wl_statvfs(const char *path, struct statvfs *buf);
 
62
 
 
63
void   wl_xdrmem_create(XDR *xdrs, const caddr_t addr,
 
64
                        const uint_t size, const enum xdr_op op);
 
65
void   wl_xdr_destroy(XDR *xdrs);
 
66
bool_t wl_xdr_double(XDR *xdrs, double *dp);
 
67
uint_t wl_xdr_getpos(const XDR *xdrs);