Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
384708bb
Commit
384708bb
authored
May 05, 2006
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
One ld_node file for each node
parent
f9c1d03b
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
335 additions
and
41 deletions
+335
-41
src/exe/rt_ini/src/ini.c
src/exe/rt_ini/src/ini.c
+2
-2
src/lib/co/src/co_dbs.pdr
src/lib/co/src/co_dbs.pdr
+2
-2
src/lib/rt/src/rt_load.x
src/lib/rt/src/rt_load.x
+2
-2
wb/lib/wb/src/wb_lfu.cpp
wb/lib/wb/src/wb_lfu.cpp
+327
-33
wb/lib/wb/src/wb_pkg.cpp
wb/lib/wb/src/wb_pkg.cpp
+2
-2
No files found.
src/exe/rt_ini/src/ini.c
View file @
384708bb
/*
* Proview $Id: ini.c,v 1.2
3 2005-11-14 16:36:35
claes Exp $
* Proview $Id: ini.c,v 1.2
4 2006-05-05 11:31:08
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -799,7 +799,7 @@ ini_CheckContext (
cp
->
bootfile
.
logOpenFail
=
errh_LogFatal
;
if
(
!
cp
->
flags
.
b
.
nodefile
)
sprintf
(
cp
->
nodefile
.
name
,
dbs_cNameNode
,
cp
->
dir
,
cp
->
busid
);
sprintf
(
cp
->
nodefile
.
name
,
dbs_cNameNode
,
cp
->
dir
,
cp
->
nodename
,
cp
->
busid
);
cdh_ToLower
(
cp
->
nodefile
.
name
,
cp
->
nodefile
.
name
);
cp
->
nodefile
.
errcount
=
&
cp
->
fatals
;
cp
->
nodefile
.
logOpenFail
=
errh_LogFatal
;
...
...
src/lib/co/src/co_dbs.pdr
View file @
384708bb
#ifdef PDR_HDR
%/**
% * Proview $Id: co_dbs.pdr,v 1.2
3 2005-09-01 14:57:52
claes Exp $
% * Proview $Id: co_dbs.pdr,v 1.2
4 2006-05-05 11:31:37
claes Exp $
% * Copyright (C) 2005 SSAB Oxelsund AB.
% *
% * This program is free software; you can redistribute it and/or
...
...
@@ -161,7 +161,7 @@
%#define dbs_cNameAlias "%spwrp_alias.dat"
%#define dbs_cNameAppl "%sld_appl_%s_%d.txt"
%#define dbs_cNameBoot "%sld_boot_%s_%04d.dat"
%#define dbs_cNameNode "%sld_node_%04d.dat"
%#define dbs_cNameNode "%sld_node_%
s_%
04d.dat"
%#define dbs_cNameRc "%sld_rc_%s_%04d.dat"
%
%/**
...
...
src/lib/rt/src/rt_load.x
View file @
384708bb
#ifdef RPC_HDR
%/*
% * Proview $Id: rt_load.x,v 1.
4 2005-09-01 14:57:55
claes Exp $
% * Proview $Id: rt_load.x,v 1.
5 2006-05-05 11:31:54
claes Exp $
% * Copyright (C) 2005 SSAB Oxelsund AB.
% *
% * This program is free software; you can redistribute it and/or
...
...
@@ -80,7 +80,7 @@
%#define load_cNameAlias "%spwrp_alias.dat"
%#define load_cNameAppl "%sld_appl_%s_%d.txt"
%#define load_cNameBoot "%sld_boot_%s_%04d.dat"
%#define load_cNameNode "%sld_node_%04d.dat"
%#define load_cNameNode "%sld_node_%
s_%
04d.dat"
%#define load_cNameRc "%sld_rc_%s_%04d.dat"
%
%
...
...
wb/lib/wb/src/wb_lfu.cpp
View file @
384708bb
This diff is collapsed.
Click to expand it.
wb/lib/wb/src/wb_pkg.cpp
View file @
384708bb
/*
* Proview $Id: wb_pkg.cpp,v 1.1
3 2006-02-08 13:56:41
claes Exp $
* Proview $Id: wb_pkg.cpp,v 1.1
4 2006-05-05 11:32:28
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -151,7 +151,7 @@ void wb_pkg::readConfig()
pkg_node
&
n
=
getNode
(
line_item
[
1
]);
// Add ld_node file
sprintf
(
fname
,
load_cNameNode
,
load_cDirectory
,
n
.
bus
());
sprintf
(
fname
,
load_cNameNode
,
load_cDirectory
,
n
.
name
(),
n
.
bus
());
pkg_pattern
pnode
(
fname
,
""
,
'E'
);
n
.
push_back
(
pnode
);
...
...
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