Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
58bb43cc
Commit
58bb43cc
authored
Mar 11, 2003
by
Robert Ricci
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add copyrights
parent
f913a2ba
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
96 additions
and
2 deletions
+96
-2
assign/assign.cc
assign/assign.cc
+6
-0
assign/common.h
assign/common.h
+6
-0
assign/config.cc
assign/config.cc
+1
-1
assign/config.h
assign/config.h
+1
-1
assign/delay.h
assign/delay.h
+6
-0
assign/parse_ptop.cc
assign/parse_ptop.cc
+6
-0
assign/parse_top.cc
assign/parse_top.cc
+6
-0
assign/parser.cc
assign/parser.cc
+6
-0
assign/parser.h
assign/parser.h
+5
-0
assign/pclass.cc
assign/pclass.cc
+6
-0
assign/pclass.h
assign/pclass.h
+6
-0
assign/physical.h
assign/physical.h
+6
-0
assign/port.h
assign/port.h
+6
-0
assign/score.cc
assign/score.cc
+6
-0
assign/score.h
assign/score.h
+5
-0
assign/vclass.cc
assign/vclass.cc
+6
-0
assign/vclass.h
assign/vclass.h
+6
-0
assign/virtual.h
assign/virtual.h
+6
-0
No files found.
assign/assign.cc
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#include "port.h"
#include <hash_map>
...
...
assign/common.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __COMON_H
#define __COMON_H
...
...
assign/config.cc
View file @
58bb43cc
/*
* Copyright (c) 1999-200
1
The University of Utah and the Flux Group.
* Copyright (c) 1999-200
3
The University of Utah and the Flux Group.
* All rights reserved.
*/
...
...
assign/config.h
View file @
58bb43cc
/*
* Copyright (c) 1999-200
1
The University of Utah and the Flux Group.
* Copyright (c) 1999-200
3
The University of Utah and the Flux Group.
* All rights reserved.
*/
...
...
assign/delay.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __DELAY_H
#define __DELAY_H
...
...
assign/parse_ptop.cc
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#include "port.h"
#include <hash_map>
...
...
assign/parse_top.cc
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#include "port.h"
#include <hash_map>
...
...
assign/parser.cc
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#include <vector>
#include <rope>
#include <algo.h>
...
...
assign/parser.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __PARSER_H
#define __PARSER_H
...
...
assign/pclass.cc
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#include "port.h"
#include <stdlib.h>
...
...
assign/pclass.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __PCLASS_H
#define __PCLASS_H
...
...
assign/physical.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __PHYSICAL_H
#define __PHYSICAL_H
...
...
assign/port.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
// This file may need to be changed depending on the architecture.
#include <limits.h>
...
...
assign/score.cc
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#include "port.h"
#include <iostream.h>
...
...
assign/score.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef _SCORE_H
#define _SCORE_H
...
...
assign/vclass.cc
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#include "port.h"
#include <stdlib.h>
...
...
assign/vclass.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __VCLASS_H
#define __VCLASS_H
...
...
assign/virtual.h
View file @
58bb43cc
/*
* EMULAB-COPYRIGHT
* Copyright (c) 2000-2003 University of Utah and the Flux Group.
* All rights reserved.
*/
#ifndef __VIRTUAL_H
#define __VIRTUAL_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment