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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
cc61af67
Commit
cc61af67
authored
Jul 23, 2008
by
Dan Nicolaescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* m/alpha.h (LINUX_SBRK_BUG):
* emacs.c (main): Undo previous change.
parent
98c51a88
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
src/ChangeLog
src/ChangeLog
+0
-2
src/emacs.c
src/emacs.c
+2
-1
src/m/alpha.h
src/m/alpha.h
+5
-0
No files found.
src/ChangeLog
View file @
cc61af67
...
...
@@ -26,8 +26,6 @@
* m/intel386.h (DATA_END):
* m/ibmrs6000.h (DATA_END):
* m/alpha.h (DATA_END): Remove, unused.
(LINUX_SBRK_BUG): Remove, move condition to the only use ...
* emacs.c (main): ... here.
* config.in: Regenerate.
* s/ms-w32.h (subprocesses): Define unconditionally.
...
...
src/emacs.c
View file @
cc61af67
...
...
@@ -827,7 +827,8 @@ main (argc, argv
heap_bss_diff
=
(
char
*
)
my_heap_start
-
max
(
my_endbss
,
my_endbss_static
);
}
#if defined(GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6
#ifdef LINUX_SBRK_BUG
/* This is only used GNU/LINUX running on alpha when using libc5 */
__sbrk
(
1
);
#endif
...
...
src/m/alpha.h
View file @
cc61af67
...
...
@@ -113,6 +113,11 @@ NOTE-END
#endif
/* __ELF__ */
#if defined (GNU_LINUX) && __GNU_LIBRARY__ - 0 < 6
/* This controls a conditional in main. */
#define LINUX_SBRK_BUG
#endif
/* On the Alpha it's best to avoid including TERMIO since struct
termio and struct termios are mutually incompatible. */
#define NO_TERMIO
...
...
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