Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
aec81618
Commit
aec81618
authored
Jul 27, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug introduced, attempted an optimisation not very successfully
parent
6d1bd029
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
11 deletions
+8
-11
storage/ndb/src/ndbapi/TransporterFacade.cpp
storage/ndb/src/ndbapi/TransporterFacade.cpp
+8
-11
No files found.
storage/ndb/src/ndbapi/TransporterFacade.cpp
View file @
aec81618
...
@@ -1376,19 +1376,16 @@ void PollGuard::wait_for_input(int wait_time)
...
@@ -1376,19 +1376,16 @@ void PollGuard::wait_for_input(int wait_time)
receiving data we will check if all data is received, if not we
receiving data we will check if all data is received, if not we
poll again.
poll again.
*/
*/
if
(
t_poll_owner
)
{
#ifdef NDB_SHM_TRANSPORTER
#ifdef NDB_SHM_TRANSPORTER
/*
/*
If shared memory transporters are used we need to set our sigmask
If shared memory transporters are used we need to set our sigmask
such that we wake up also on interrupts on the shared memory
such that we wake up also on interrupts on the shared memory
interrupt signal.
interrupt signal.
*/
*/
NdbThread_set_shm_sigmask
(
FALSE
);
NdbThread_set_shm_sigmask
(
FALSE
);
#endif
#endif
m_tp
->
set_poll_owner
(
m_waiter
);
m_tp
->
set_poll_owner
(
m_waiter
);
m_waiter
->
set_poll_owner
(
true
);
m_waiter
->
set_poll_owner
(
true
);
}
m_tp
->
external_poll
((
Uint32
)
wait_time
);
m_tp
->
external_poll
((
Uint32
)
wait_time
);
}
}
}
}
...
...
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