Skip to content

Commit

Permalink
* sysdeps/unix/sysv/linux/adjtime.c: Correctly use
Browse files Browse the repository at this point in the history
	ADJ_OFFSET_SS_READ.
  • Loading branch information
Ulrich Drepper committed Mar 24, 2008
1 parent 0ab7632 commit e093c24
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2008-03-24 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/adjtime.c: Correctly use
ADJ_OFFSET_SS_READ.

* sysdeps/unix/sysv/linux/bits/sched.h: Add new CLONE_* flags,
remove CLONE_STOPPED.

Expand Down
10 changes: 6 additions & 4 deletions sysdeps/unix/sysv/linux/adjtime.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1995, 1996, 1997, 1998, 2002, 2004, 2007
/* Copyright (C) 1995, 1996, 1997, 1998, 2002, 2004, 2007, 2008
Free Software Foundation, Inc.
This file is part of the GNU C Library.
Expand Down Expand Up @@ -71,14 +71,16 @@ ADJTIME (const struct TIMEVAL *itv, struct TIMEVAL *otv)
return -1;
}
tntx.offset = tmp.tv_usec + tmp.tv_sec * 1000000L;
tntx.modes = ADJ_OFFSET_SINGLESHOT;
}
else
{
#ifdef ADJ_OFFSET_SS_READ
tntx.modes = ADJ_OFFSET_SS_READ;
#else
tntx.modes = ADJ_OFFSET_SINGLESHOT;
tntx.modes = 0;
#endif
}
else
tntx.modes = 0;

#if defined ADJ_OFFSET_SS_READ && !defined __ASSUME_ADJ_OFFSET_SS_READ
again:
Expand Down

0 comments on commit e093c24

Please sign in to comment.