Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
917dcad3
Commit
917dcad3
authored
Jul 06, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made ctrl+c detection in a mex file work more reliably in newer versions of
matlab.
parent
26524fe7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
mex_wrapper.cpp
dlib/matlab/mex_wrapper.cpp
+4
-4
No files found.
dlib/matlab/mex_wrapper.cpp
View file @
917dcad3
...
...
@@ -3050,12 +3050,12 @@ namespace mex_binding
int
num
=
static_cast
<
int
>
(
pptr
()
-
pbase
());
if
(
num
!=
0
)
{
check_for_matlab_ctrl_c
();
buf
[
num
]
=
0
;
// null terminate the string
mexPrintf
(
"%s"
,
&
buf
[
0
]);
mexEvalString
(
"drawnow"
);
// flush print to screen
pbump
(
-
num
);
check_for_matlab_ctrl_c
();
}
return
0
;
}
...
...
@@ -3108,12 +3108,12 @@ namespace mex_binding
int
num
=
static_cast
<
int
>
(
pptr
()
-
pbase
());
if
(
num
!=
0
)
{
check_for_matlab_ctrl_c
();
buf
[
num
]
=
0
;
// null terminate the string
mexWarnMsgTxt
(
&
buf
[
0
]);
mexEvalString
(
"drawnow"
);
// flush print to screen
pbump
(
-
num
);
check_for_matlab_ctrl_c
();
}
return
0
;
}
...
...
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