Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
linux
Commits
d278bd1e
Commit
d278bd1e
authored
Feb 11, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merged
parents
94dc90de
60e49ba3
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
163 additions
and
153 deletions
+163
-153
arch/i386/kernel/apm.c
arch/i386/kernel/apm.c
+159
-150
arch/i386/kernel/i386_ksyms.c
arch/i386/kernel/i386_ksyms.c
+3
-2
arch/i386/kernel/process.c
arch/i386/kernel/process.c
+1
-1
No files found.
arch/i386/kernel/apm.c
View file @
d278bd1e
This diff is collapsed.
Click to expand it.
arch/i386/kernel/i386_ksyms.c
View file @
d278bd1e
...
...
@@ -32,9 +32,11 @@
extern
void
dump_thread
(
struct
pt_regs
*
,
struct
user
*
);
extern
spinlock_t
rtc_lock
;
#if defined(CONFIG_APM
) || defined(CONFIG_APM
_MODULE)
#if defined(CONFIG_APM_MODULE)
extern
void
machine_real_restart
(
unsigned
char
*
,
int
);
EXPORT_SYMBOL
(
machine_real_restart
);
extern
void
default_idle
(
void
);
EXPORT_SYMBOL
(
default_idle
);
#endif
#ifdef CONFIG_SMP
...
...
@@ -93,7 +95,6 @@ EXPORT_SYMBOL_NOVERS(__get_user_4);
EXPORT_SYMBOL
(
strtok
);
EXPORT_SYMBOL
(
strpbrk
);
EXPORT_SYMBOL
(
simple_strtol
);
EXPORT_SYMBOL
(
strstr
);
EXPORT_SYMBOL
(
strncpy_from_user
);
...
...
arch/i386/kernel/process.c
View file @
d278bd1e
...
...
@@ -86,7 +86,7 @@ void enable_hlt(void)
* We use this if we don't have any better
* idle routine..
*/
static
void
default_idle
(
void
)
void
default_idle
(
void
)
{
if
(
current_cpu_data
.
hlt_works_ok
&&
!
hlt_counter
)
{
__cli
();
...
...
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