blob: 433144f6f2598549ee82c5b62f35b987f6d70fa6 [file] [log] [blame]
Ben Lindstrom2b70e562002-05-15 16:39:51 +00001/*
Damien Miller31741252003-05-19 00:13:38 +10002 * $Id: bsd-cray.h,v 1.9 2003/05/18 14:13:39 djm Exp $
Ben Lindstrom2b70e562002-05-15 16:39:51 +00003 *
4 * bsd-cray.h
5 *
6 * Copyright (c) 2002, Cray Inc. (Wendy Palm <wendyp@cray.com>)
7 * Significant portions provided by
8 * Wayne Schroeder, SDSC <schroeder@sdsc.edu>
9 * William Jones, UTexas <jones@tacc.utexas.edu>
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * Created: Apr 22 16.34:00 2002 wp
32 *
33 * This file contains functions required for proper execution
34 * on UNICOS systems.
35 *
36 */
Tim Ricee991e3c2001-08-07 15:29:07 -070037#ifndef _BSD_CRAY_H
38#define _BSD_CRAY_H
39
Tim Rice81ed5182002-09-25 17:38:46 -070040#ifdef _UNICOS
Damien Miller31741252003-05-19 00:13:38 +100041
42void cray_init_job(struct passwd *);
43void cray_job_termination_handler(int);
44void cray_login_failure(char *, int );
45int cray_access_denied(char *);
Darren Tucker97363a82003-05-02 23:42:25 +100046#define CUSTOM_FAILED_LOGIN 1
Damien Miller31741252003-05-19 00:13:38 +100047void record_failed_login(const char *, const char *);
48extern char cray_tmpdir[];
49
Ben Lindstrom6f52b3e2002-07-23 21:00:17 +000050#ifndef IA_SSHD
Damien Miller31741252003-05-19 00:13:38 +100051# define IA_SSHD IA_LOGIN
Ben Lindstrom6f52b3e2002-07-23 21:00:17 +000052#endif
53#ifndef MAXHOSTNAMELEN
Damien Miller31741252003-05-19 00:13:38 +100054# define MAXHOSTNAMELEN 64
Ben Lindstrom6f52b3e2002-07-23 21:00:17 +000055#endif
Ben Lindstroma5a26482003-03-21 01:05:37 +000056#ifndef _CRAYT3E
Damien Miller31741252003-05-19 00:13:38 +100057# include <sys/ttold.h>
58# define TIOCGPGRP (tIOC|20)
Tim Ricee991e3c2001-08-07 15:29:07 -070059#endif
Damien Miller31741252003-05-19 00:13:38 +100060
61#endif /* UNICOS */
Tim Ricee991e3c2001-08-07 15:29:07 -070062
Tim Ricee991e3c2001-08-07 15:29:07 -070063#endif /* _BSD_CRAY_H */