Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
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
abdullh.alsoleman
Front-End
Commits
0550c2f0
Commit
0550c2f0
authored
Mar 16, 2017
by
Michael Goderbauer
Committed by
GitHub
Mar 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove workaround for SIGINT (#8834)
It's no longer needed with the latest Dart SDK roll.
parent
2bbe82ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
35 deletions
+1
-35
executable.dart
packages/flutter_tools/lib/executable.dart
+0
-1
io.dart
packages/flutter_tools/lib/src/base/io.dart
+1
-34
No files found.
packages/flutter_tools/lib/executable.dart
View file @
0550c2f0
...
@@ -58,7 +58,6 @@ import 'src/usage.dart';
...
@@ -58,7 +58,6 @@ import 'src/usage.dart';
///
///
/// This function is intended to be used from the `flutter` command line tool.
/// This function is intended to be used from the `flutter` command line tool.
Future
<
Null
>
main
(
List
<
String
>
args
)
async
{
Future
<
Null
>
main
(
List
<
String
>
args
)
async
{
SigintProcessSignal
.
instance
.
init
();
final
bool
verbose
=
args
.
contains
(
'-v'
)
||
args
.
contains
(
'--verbose'
);
final
bool
verbose
=
args
.
contains
(
'-v'
)
||
args
.
contains
(
'--verbose'
);
final
bool
help
=
args
.
contains
(
'-h'
)
||
args
.
contains
(
'--help'
)
||
final
bool
help
=
args
.
contains
(
'-h'
)
||
args
.
contains
(
'--help'
)
||
(
args
.
isNotEmpty
&&
args
.
first
==
'help'
)
||
(
args
.
length
==
1
&&
verbose
);
(
args
.
isNotEmpty
&&
args
.
first
==
'help'
)
||
(
args
.
length
==
1
&&
verbose
);
...
...
packages/flutter_tools/lib/src/base/io.dart
View file @
0550c2f0
...
@@ -115,8 +115,7 @@ class ProcessSignal implements io.ProcessSignal {
...
@@ -115,8 +115,7 @@ class ProcessSignal implements io.ProcessSignal {
static
const
ProcessSignal
SIGTERM
=
const
_PosixProcessSignal
.
_
(
io
.
ProcessSignal
.
SIGTERM
);
static
const
ProcessSignal
SIGTERM
=
const
_PosixProcessSignal
.
_
(
io
.
ProcessSignal
.
SIGTERM
);
static
const
ProcessSignal
SIGUSR1
=
const
_PosixProcessSignal
.
_
(
io
.
ProcessSignal
.
SIGUSR1
);
static
const
ProcessSignal
SIGUSR1
=
const
_PosixProcessSignal
.
_
(
io
.
ProcessSignal
.
SIGUSR1
);
static
const
ProcessSignal
SIGUSR2
=
const
_PosixProcessSignal
.
_
(
io
.
ProcessSignal
.
SIGUSR2
);
static
const
ProcessSignal
SIGUSR2
=
const
_PosixProcessSignal
.
_
(
io
.
ProcessSignal
.
SIGUSR2
);
static
const
ProcessSignal
SIGINT
=
const
ProcessSignal
(
io
.
ProcessSignal
.
SIGINT
);
static
final
ProcessSignal
SIGINT
=
SigintProcessSignal
.
instance
;
// ignore: non_constant_identifier_names
final
io
.
ProcessSignal
_delegate
;
final
io
.
ProcessSignal
_delegate
;
...
@@ -143,35 +142,3 @@ class _PosixProcessSignal extends ProcessSignal {
...
@@ -143,35 +142,3 @@ class _PosixProcessSignal extends ProcessSignal {
return
super
.
watch
();
return
super
.
watch
();
}
}
}
}
// TODO(goderbauer): remove when https://github.com/dart-lang/sdk/issues/28995 is resolved.
class
SigintProcessSignal
extends
ProcessSignal
{
SigintProcessSignal
.
_
()
:
super
(
io
.
ProcessSignal
.
SIGINT
);
static
final
SigintProcessSignal
instance
=
new
SigintProcessSignal
.
_
();
bool
_isInitialized
=
false
;
final
StreamController
<
ProcessSignal
>
_controller
=
new
StreamController
<
ProcessSignal
>();
@override
Stream
<
ProcessSignal
>
watch
()
{
init
();
return
_controller
.
stream
;
}
void
init
()
{
if
(!
_isInitialized
)
{
_delegate
.
watch
().
listen
(
_handleSigInt
);
_isInitialized
=
true
;
}
}
void
_handleSigInt
(
io
.
ProcessSignal
signal
)
{
if
(
platform
.
isWindows
&&
!
_controller
.
hasListener
)
{
// If nobody is listening for SIGINT, we force a clean exit to avoid
// https://github.com/dart-lang/sdk/issues/28995.
exit
(
0
);
}
_controller
.
add
(
this
);
}
}
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