Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wdscripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ifs
coast
wdscripts
Commits
3062124a
Commit
3062124a
authored
18 years ago
by
Marcel Huber
Browse files
Options
Downloads
Patches
Plain Diff
corrected gdb parameters
parent
55eda7d5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
prjconfig.sh
+6
-6
6 additions, 6 deletions
prjconfig.sh
startwds.sh
+1
-1
1 addition, 1 deletion
startwds.sh
with
7 additions
and
7 deletions
prjconfig.sh
+
6
−
6
View file @
3062124a
...
...
@@ -65,17 +65,17 @@ PRJ_DESCRIPTION="Coast scripts"
# The following variables are used during package generation using MkPckg.sh or the old doall.sh
# Its values are needed within cpall.sh and control if project-directories and its contents get copied.
# do we have to copy WDA_BIN/WDS_BIN binary, default 1, otherwise set to 0
cfg_doBin
=
0
;
cfg_doBin
=
1
;
# do we have to copy libraries from WD_LIBDIR, default 1, otherwise set to 0
cfg_doLib
=
0
;
cfg_doLib
=
1
;
# do we have to copy CONFIGDIR contents, default 1, otherwise set to 0
cfg_doCfg
=
0
;
cfg_doCfg
=
1
;
# do we have to create a log directory, default 1, otherwise set to 0
cfg_doLog
=
0
;
cfg_doLog
=
1
;
# do we have to copy Coast scripts into package, default 1, otherwise set to 0
#
cfg_doScr=0;
cfg_doScr
=
0
;
# define relative destination directory for Coast scripts
cfg_destScriptDir
=
""
;
#
cfg_destScriptDir="";
############################################################################
#
...
...
This diff is collapsed.
Click to expand it.
startwds.sh
+
1
−
1
View file @
3062124a
...
...
@@ -199,7 +199,7 @@ if [ $cfg_dbgctl -eq 0 ]; then
else
printf
"%s %s: "
"
`
date
+%Y%m%d%H%M%S
`
"
"
${
MYNAME
}
"
>>
${
ServerMsgLog
}
printf
"starting %s [%s] using GDB in batch mode with options [%s] on [%s]
\n
"
"
${
SERVERNAME
}
"
"
$WDS_BIN
"
"
$cfg_srvopts
"
"
${
HOSTNAME
}
"
|
tee
-a
${
ServerMsgLog
}
${
ServerErrLog
}
;
gdb
-batch
-command
${
cfg_gdbcommands
}
2>>
${
ServerErrLog
}
>>
${
ServerMsgLog
}
&
gdb
-
-batch
-
-command
${
cfg_gdbcommands
}
2>>
${
ServerErrLog
}
>>
${
ServerMsgLog
}
&
fi
# this on seems to be simpler to grasp the PID than using ps
locProcPid
=
$!
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment