Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
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
lvzhengyang
riscv-gcc-1
Commits
fbf153f2
Commit
fbf153f2
authored
20 years ago
by
Aaron W. LaFramboise
Committed by
Per Bothner
20 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* engine/util.c (vfail): Remove unnecessary sync, fsync, and fflush.
From-SVN: r84253
parent
45fdd405
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
libbanshee/engine/ChangeLog
+4
-0
libbanshee/engine/util.c
+0
-5
No files found.
libbanshee/engine/ChangeLog
View file @
fbf153f2
2004-05-28 Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
* engine/util.c (vfail): Remove unnecessary sync, fsync, and fflush.
2003-07-01 Daniel Berlin <dberlin@dberlin.org>
* bool.h: Can't include gcc's system.h and bool.h at the same time.
...
...
This diff is collapsed.
Click to expand it.
libbanshee/engine/util.c
View file @
fbf153f2
...
...
@@ -44,13 +44,8 @@ static void vfail(const char *fmt, va_list args) __attribute__((__noreturn__));
static
void
vfail
(
const
char
*
fmt
,
va_list
args
)
{
vfprintf
(
stderr
,
fmt
,
args
);
fflush
(
stdin
);
fflush
(
stderr
);
fflush
(
stdout
);
sync
();
fsync
(
STDIN_FILENO
);
fsync
(
STDERR_FILENO
);
fsync
(
STDOUT_FILENO
);
abort
();
while
(
1
);
/* Work around stupid gcc-2.96-85 bug */
}
...
...
This diff is collapsed.
Click to expand it.
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