Skip to content

Commit 4413f47

Browse files
committed
Adding Apache 2.0 license statement to source files
1 parent ea33c59 commit 4413f47

File tree

407 files changed

+6941
-1331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

407 files changed

+6941
-1331
lines changed

.bash_profile

100755100644
+18-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
# @(#)37 1.21.1.17 src/htx/usr/lpp/htx/.bash_profile, htxbringup, htxubuntu 6/15/15 00:59:28
2-
1+
# IBM_PROLOG_BEGIN_TAG
2+
#
3+
# Copyright 2003,2016 IBM International Business Machines Corp.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
# implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
# IBM_PROLOG_END_TAG
319
# Check whether HTX is already running on system
420
[ "`ps -ef | grep hxssup | grep -v grep`" ] && {
521
echo "HTX is already running..."

.bashrc

100755100644
+18-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
# IBM_PROLOG_BEGIN_TAG
2-
# This is an automatically generated prolog.
3-
#
4-
# htxltsbml src/htx/usr/lpp/htx/.bashrc 1.4
5-
#
6-
# Licensed Materials - Property of IBM
7-
#
8-
# COPYRIGHT International Business Machines Corp. 2010
9-
# All Rights Reserved
10-
#
11-
# US Government Users Restricted Rights - Use, duplication or
12-
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
13-
#
14-
# IBM_PROLOG_END_TAG
15-
# @(#)38 1.4.4.1 src/htx/usr/lpp/htx/.bashrc, htxbringup, htxubuntu 1/11/13 00:30:45
1+
# IBM_PROLOG_BEGIN_TAG
2+
#
3+
# Copyright 2003,2016 IBM International Business Machines Corp.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
# implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
# IBM_PROLOG_END_TAG
1619

1720
# User specific aliases and functions
1821

.htx_profile

-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# @(#)16 1.11.3.4 src/htx/usr/lpp/htx/.htx_profile, htxbringup, htxubuntu 11/13/14 03:08:36
2-
#############################################################################
31
/default:
42
editor = "/usr/bin/vi"
53
run_mode = "REG"
@@ -20,8 +18,6 @@
2018
rand_halt_hi = "5400"
2119
rand_halt_low = "3600"
2220
slow_shutd_wait = "240"
23-
* stress_dev = "/dev/lp0"
24-
* stress_cycle = "10"
2521
hang_mon_period = "60"
2622
max_added_devices = "50"
2723
max_exer_entries = "6500"

.htxrc

100755100644
+18-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
2-
# @(#)17 1.14.1.25 src/htx/usr/lpp/htx/.htxrc, htxbringup, htxubuntu 7/28/15 01:09:29
1+
# IBM_PROLOG_BEGIN_TAG
2+
#
3+
# Copyright 2003,2016 IBM International Business Machines Corp.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
# implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
# IBM_PROLOG_END_TAG
319

420
export HTXLPP=/usr/lpp/htx/
521
export HTXPATH=/usr/lpp/htx

Documentation/Makefile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
include ../htx.mk
2+
3+
TARGET= equaliser.readme
4+
5+
.PHONY: all clean
6+
7+
all:
8+
@echo "making dir - "${SHIPDOCDIR}
9+
${MKDIR} ${SHIPDOCDIR}
10+
${CP} ${TARGET} ${SHIPDOCDIR}
11+
12+
clean:
13+
@echo "Removing dir - "${SHIPDOCDIR}
14+
${RM} -rf ${SHIPDOCDIR}

bin/bufdisp/bufdisp.c

100755100644
+18-13
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
1-
2-
/* @(#)26 1.8 src/htx/usr/lpp/htx/bin/bufdisp/bufdisp.c, htxmisc_c, htxubuntu 5/24/04 18:27:43 */
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
319

420
/******************************************************************************
5-
* COMPONENT_NAME: htxmisc_c
6-
*
721
* PROGRAM_NAME: bufdisp.c
822
*
923
* This program will take two data files and compare them against each other.
@@ -15,15 +29,6 @@
1529
* through the data as well as go to a specific offset. Also you will be able
1630
* to display the offset in hexadecimal or decimal format. You will also be
1731
* able to change the block size of the data. The default blocksize is 512.
18-
*
19-
* CHANGE LOG: programmer | date | change
20-
* -------------|----------|---------------------------------------
21-
* D. Stauffer | 02/06/97 | Initial release of code to HTX.
22-
* D. Stauffer | 04/01/97 | Added ASCI characters to side of
23-
* | | displayed lines.
24-
* HTX India | 22/04/04 | Change the Logic in comparing
25-
* | | the buffers. Now, same logic will be
26-
* | | used as in hxehd while comparing.
2732
****************************************************************************/
2833
#include <stdio.h> /* standard include declarations */
2934
#include <sys/types.h>

bin/eserv_cmd/eserv_cmd.c

100755100644
+19-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
/* IBM_PROLOG_BEGIN_TAG */
2-
/* This is an automatically generated prolog. */
3-
/* */
4-
/* htxltsbml src/htx/usr/lpp/htx/bin/eserv_cmd/eserv_cmd.c 1.28.4.2 */
5-
/* */
6-
/* Licensed Materials - Property of IBM */
7-
/* */
8-
/* Restricted Materials of IBM */
9-
/* */
10-
/* COPYRIGHT International Business Machines Corp. 2003,2012 */
11-
/* All Rights Reserved */
12-
/* */
13-
/* US Government Users Restricted Rights - Use, duplication or */
14-
/* disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */
15-
/* */
16-
/* IBM_PROLOG_END_TAG */
17-
18-
/* @(#)90 1.28.4.3 src/htx/usr/lpp/htx/bin/eserv_cmd/eserv_cmd.c, eserv_cmd, htxubuntu 12/11/12 06:01:44 */
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
19+
1920

2021
#include <stdio.h>
2122
#include <stdlib.h>

bin/eserv_cmd/parse_cmd.c

100755100644
+18-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
/* IBM_PROLOG_BEGIN_TAG */
2-
/* This is an automatically generated prolog. */
3-
/* */
4-
/* htxltsbml src/htx/usr/lpp/htx/bin/eserv_cmd/parse_cmd.c 1.12.5.3 */
5-
/* */
6-
/* Licensed Materials - Property of IBM */
7-
/* */
8-
/* Restricted Materials of IBM */
9-
/* */
10-
/* COPYRIGHT International Business Machines Corp. 2003,2012 */
11-
/* All Rights Reserved */
12-
/* */
13-
/* US Government Users Restricted Rights - Use, duplication or */
14-
/* disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */
15-
/* */
16-
/* IBM_PROLOG_END_TAG */
17-
18-
/* @(#)91 1.12.5.4 src/htx/usr/lpp/htx/bin/eserv_cmd/parse_cmd.c, eserv_cmd, htxubuntu 12/11/12 06:02:22 */
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
1919

2020
extern char file_sut[40];
2121
extern int cmd;

bin/eservd/AH_device.c

100755100644
+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
119

2-
/* @(#)18 1.21.5.2 src/htx/usr/lpp/htx/bin/eservd/AH_device.c, eserv_daemon, htxubuntu 12/29/14 23:43:17 */
320

421

522
#include "eservd.h"

bin/eservd/AH_system.c

100755100644
+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
/* @(#)19 1.23.5.4 src/htx/usr/lpp/htx/bin/eservd/AH_system.c, eserv_daemon, htxubuntu 12/16/14 03:58:24 */
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
219

320

421
#include "eservd.h"

bin/eservd/A_device.c

100755100644
+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
119

2-
/* @(#)20 1.16.5.2 src/htx/usr/lpp/htx/bin/eservd/A_device.c, eserv_daemon, htxubuntu 12/29/14 23:43:20 */
320

421
#include <string.h>
522
#include "eservd.h"

bin/eservd/COE_devic.c

100755100644
+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
119

2-
/* @(#)21 1.19.4.1 src/htx/usr/lpp/htx/bin/eservd/COE_devic.c, eserv_daemon, htxubuntu 12/16/14 01:58:41 */
320

421
#include "eservd.h"
522
#include "global.h"

bin/eservd/H_device.c

100755100644
+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
119

2-
/* @(#)35 1.10.4.1 src/htx/usr/lpp/htx/bin/eservd/H_device.c, eserv_daemon, htxubuntu 12/16/14 01:58:47 */
320

421
#include <string.h>
522
#include "eservd.h"

bin/eservd/R_device.c

100755100644
+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
/* @(#)22 1.32.4.5 src/htx/usr/lpp/htx/bin/eservd/R_device.c, eserv_daemon, htxubuntu 12/30/14 00:14:29 */
1+
/* IBM_PROLOG_BEGIN_TAG */
2+
/*
3+
* Copyright 2003,2016 IBM International Business Machines Corp.
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14+
* implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
/* IBM_PROLOG_END_TAG */
219

320

421
#include "eservd.h"

0 commit comments

Comments
 (0)