Skip to content

Commit

Permalink
[kernel][exceptions] Add MG-987 to some TODOs
Browse files Browse the repository at this point in the history
Change-Id: I5792522cb9a03ed8a50bc98dc672a8e2ecf88c15
  • Loading branch information
xdje42 committed Aug 3, 2017
1 parent e1f60c9 commit d2723ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/lib/syscalls/syscalls_exceptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static mx_status_t object_unbind_exception_port(mx_handle_t obj_handle, bool deb
// TODO(MG-968): check rights once appropriate right is determined

if (obj_handle == MX_HANDLE_INVALID) {
// TODO: handle for system exception
// TODO(MG-987): handle for system exception
if (debugger || quietly)
return MX_ERR_INVALID_ARGS;
return ResetSystemExceptionPort()
Expand Down Expand Up @@ -71,7 +71,7 @@ static mx_status_t task_bind_exception_port(mx_handle_t obj_handle, mx_handle_t
mxtl::RefPtr<ExceptionPort> eport;

if (obj_handle == MX_HANDLE_INVALID) {
// TODO: handle for system exception
// TODO(MG-987): handle for system exception
if (debugger)
return MX_ERR_INVALID_ARGS;
status = ExceptionPort::Create(ExceptionPort::Type::SYSTEM,
Expand Down

0 comments on commit d2723ac

Please sign in to comment.