Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
68d10241
Commit
68d10241
authored
May 13, 1994
by
Richard M. Stallman
Browse files
(child_setup): PRIO_PROCESS renamed to SET_EMACS_PRIORITY.
Don't call nice if emacs_priority is positive.
parent
a422068f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/callproc.c
src/callproc.c
+3
-2
No files found.
src/callproc.c
View file @
68d10241
...
...
@@ -574,11 +574,12 @@ child_setup (in, out, err, new_argv, set_pgrp, current_dir)
int
pid
=
getpid
();
#ifdef
PRIO_PROCESS
#ifdef
SET_EMACS_PRIORITY
{
extern
int
emacs_priority
;
nice
(
-
emacs_priority
);
if
(
emacs_priority
<
0
)
nice
(
-
emacs_priority
);
}
#endif
...
...
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