Skip to content
Snippets Groups Projects
Commit 9bb5f9f9 authored by Moe Jette's avatar Moe Jette
Browse files

Add missing copyright notices, UCRL-CODE numbers.

parent 7466fc86
No related branches found
No related tags found
No related merge requests found
/****************************************************************************\
* arg_desc.c
*****************************************************************************
* Copyright (C) 2005 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\****************************************************************************/
#include <string.h> #include <string.h>
#include "src/common/arg_desc.h" #include "src/common/arg_desc.h"
#include "src/common/macros.h" #include "src/common/macros.h"
......
/****************************************************************************\
* arg_desc.h
*****************************************************************************
* Copyright (C) 2005 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\****************************************************************************/
#ifndef __ARG_DESC_H__ #ifndef __ARG_DESC_H__
#define __ARG_DESC_H__ #define __ARG_DESC_H__
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
* Copyright (C) 2005 Hewlett-Packard Development Company, L.P. * Copyright (C) 2005 Hewlett-Packard Development Company, L.P.
* Written by Chris Holmes, <cholmes@hp.com>, who borrowed heavily * Written by Chris Holmes, <cholmes@hp.com>, who borrowed heavily
* from other parts of SLURM. * from other parts of SLURM.
* UCRL-CODE-2002-040.
* *
* This file is part of SLURM, a resource management program. * This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>. * For details, see <http://www.llnl.gov/linux/slurm/>.
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
* Copyright (C) 2005 Hewlett-Packard Development Company, L.P. * Copyright (C) 2005 Hewlett-Packard Development Company, L.P.
* Written by Chris Holmes, <cholmes@hp.com>, who borrowed heavily * Written by Chris Holmes, <cholmes@hp.com>, who borrowed heavily
* from other parts of SLURM. * from other parts of SLURM.
* UCRL-CODE-2002-040.
* *
* This file is part of SLURM, a resource management program. * This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>. * For details, see <http://www.llnl.gov/linux/slurm/>.
......
/*****************************************************************************\
* net.h - basic network communications for user application I/O
*****************************************************************************
* Copyright (C) 2002 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Mark Grondona <grondona1@llnl.gov>, Kevin Tew <tew1@llnl.gov>,
* et. al.
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#ifndef _NET_H #ifndef _NET_H
#define _NET_H #define _NET_H
......
/* $Id$ */ /*****************************************************************************\
* safeopen.c - safer interface to open()
/* safer interface to open() * $Id$
*/ *****************************************************************************
* Copyright (C) 2002 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#if HAVE_CONFIG_H #if HAVE_CONFIG_H
......
/* $Id$ */ /*****************************************************************************\
* safeopen.h - safer interface to open()
/* safer interface to open(): * $Id$
*****************************************************************************
* Copyright (C) 2002 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* UCRL-CODE-2002-040.
* *
*/ * This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#ifndef _SAFEOPEN_H #ifndef _SAFEOPEN_H
#define _SAFEOPEN_H #define _SAFEOPEN_H
......
/*****************************************************************************\
* src/common/unsetenv.h - Kludge for unsetenv on AIX
*****************************************************************************
* Copyright (C) 2004 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Morris Jette <jette1@llnl.gov>.
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#ifndef _UNSETENV_H #ifndef _UNSETENV_H
#define _UNSETENV_H #define _UNSETENV_H
......
/* $Id$ */ /*****************************************************************************\
* xassert.c - replacement for assert which sends error to log instead
/* * of stderr
** xassert: replacement for assert which sends error to log instead of stderr * $Id$
** *****************************************************************************
*/ * Copyright (C) 2004 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Moe Jette <jette@llnl.gov>.
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#if HAVE_CONFIG_H #if HAVE_CONFIG_H
# include "config.h" # include "config.h"
......
/* $Id$ */ /*****************************************************************************\
* xassert.h: assert type macro with configurable handling
/* * If NDEBUG is defined, do nothing.
* xassert: assert type macro with configurable handling * If not, and expression is zero, log an error message and abort.
* If NDEBUG is defined, do nothing. * $Id$
* If not, and expression is zero, log an error message and abort. *****************************************************************************
*/ * Copyright (C) 2004 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Moe Jette <jette@llnl.gov>.
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#ifndef _XASSERT_H #ifndef _XASSERT_H
#define _XASSERT_H 1 #define _XASSERT_H 1
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
* Copyright (C) 2005 Hewlett-Packard Development Company, L.P. * Copyright (C) 2005 Hewlett-Packard Development Company, L.P.
* Written by Andy Riebs, <andy.riebs@hp.com>, who borrowed heavily * Written by Andy Riebs, <andy.riebs@hp.com>, who borrowed heavily
* from other parts of SLURM. * from other parts of SLURM.
* UCRL-CODE-2002-040.
* *
* This file is part of SLURM, a resource management program. * This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>. * For details, see <http://www.llnl.gov/linux/slurm/>.
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
* *
* Copyright (C) 2005 Hewlett-Packard Development Company, L.P. * Copyright (C) 2005 Hewlett-Packard Development Company, L.P.
* Written by Andy Riebs, <andy.riebs@hp.com>. * Written by Andy Riebs, <andy.riebs@hp.com>.
* UCRL-CODE-2002-040.
* *
* This file is part of SLURM, a resource management program. * This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>. * For details, see <http://www.llnl.gov/linux/slurm/>.
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* Produced at Center for High Performance Computing, North Dakota State * Produced at Center for High Performance Computing, North Dakota State
* University * University
* Written by Nathan Huff <nhuff@acm.org> * Written by Nathan Huff <nhuff@acm.org>
* UCRL-CODE-2002-040.
* *
* This file is part of SLURM, a resource management program. * This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>. * For details, see <http://www.llnl.gov/linux/slurm/>.
......
/*****************************************************************************\ /*****************************************************************************\
** mpi_gmpi.c - Library routines for initiating jobs on with gmpi type mpi ** mpi_mpichgm.c - Library routines for initiating jobs on with gmpi type mpi
** $Id$ ** $Id$
***************************************************************************** *****************************************************************************
* Copyright (C) 2004 The Regents of the University of California. * Copyright (C) 2004 The Regents of the University of California.
......
/*****************************************************************************\
* src/srun/fname.h - IO filename type implementation (srun specific)
*****************************************************************************
* Copyright (C) 2002 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Mark Grondona <mgrondona@llnl.gov>.
* UCRL-CODE-2002-040.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* SLURM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment