Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
657acf98
You need to sign in or sign up before continuing.
Commit
657acf98
authored
May 16, 2015
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #26 from nitomartinez/fix_developer_debugging
This patch is some code fixes to allow developer debuging by using TEST macros in the NX code
parents
91ac79ec
cf4ed917
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Agent.h
nxcomp/Agent.h
+1
-1
ClearArea.cpp
nxcomp/ClearArea.cpp
+1
-1
Proxy.cpp
nxcomp/Proxy.cpp
+1
-1
No files found.
nxcomp/Agent.h
View file @
657acf98
...
...
@@ -217,7 +217,7 @@ class Agent
#if defined(TEST) || defined(INFO)
*
logofs
<<
"Agent: proxyCanRead() is "
<<
((
int
)
FD_ISSET
(
proxy
->
getFd
(),
&
readWorkSet
)
<<
((
int
)
FD_ISSET
(
proxy
->
getFd
(),
&
readWorkSet
)
)
<<
".
\n
"
<<
logofs_flush
;
#endif
...
...
nxcomp/ClearArea.cpp
View file @
657acf98
...
...
@@ -92,7 +92,7 @@ void ClearAreaStore::dumpIdentity(const Message *message) const
ClearAreaMessage
*
clearArea
=
(
ClearAreaMessage
*
)
message
;
*
logofs
<<
name
()
<<
": Identity exposures "
<<
clearArea
->
(
unsigned
int
)
exposures
*
logofs
<<
name
()
<<
": Identity exposures "
<<
(
unsigned
int
)
clearArea
->
exposures
<<
", window "
<<
clearArea
->
window
<<
", x "
<<
clearArea
->
x
<<
", y "
<<
clearArea
->
y
<<
", width "
<<
clearArea
->
width
<<
", height "
<<
clearArea
->
height
<<
", size "
<<
clearArea
->
size_
...
...
nxcomp/Proxy.cpp
View file @
657acf98
...
...
@@ -5176,7 +5176,7 @@ char *Proxy::handleSaveAllStores(const char *savePath) const
*
(
cacheDumpName
+
DEFAULT_STRING_LENGTH
-
1
)
=
'\0'
;
mode_t
fileMode
=
umask
(
0077
);
fileMode
=
umask
(
0077
);
cacheDump
=
new
ofstream
(
cacheDumpName
,
ios
::
out
);
...
...
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