Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
2004-04-13  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/mq_notify.c: Shut up GCC warning.
  • Loading branch information
Ulrich Drepper committed Apr 16, 2004
1 parent 78ce59f commit f93fa7d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions linuxthreads/ChangeLog
@@ -1,3 +1,7 @@
2004-04-13 Jakub Jelinek <jakub@redhat.com>

* sysdeps/unix/sysv/linux/mq_notify.c: Shut up GCC warning.

2004-04-12 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/mq_notify.c: New file.
Expand Down
1 change: 1 addition & 0 deletions linuxthreads/sysdeps/unix/sysv/linux/mq_notify.c
Expand Up @@ -137,6 +137,7 @@ helper_thread (void *arg)
/* The only state we keep is the copy of the thread attributes. */
free (data.attr);
}
return NULL;
}


Expand Down
4 changes: 4 additions & 0 deletions nptl/ChangeLog
@@ -1,3 +1,7 @@
2004-04-13 Jakub Jelinek <jakub@redhat.com>

* sysdeps/unix/sysv/linux/mq_notify.c: Shut up GCC warning.

2004-04-12 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/mq-notify.c: New file.
Expand Down
1 change: 1 addition & 0 deletions nptl/sysdeps/unix/sysv/linux/mq_notify.c
Expand Up @@ -137,6 +137,7 @@ helper_thread (void *arg)
/* The only state we keep is the copy of the thread attributes. */
free (data.attr);
}
return NULL;
}


Expand Down
6 changes: 3 additions & 3 deletions sysdeps/s390/ffs.c
@@ -1,6 +1,6 @@
/* ffs -- find first set bit in a word, counted from least significant end.
S/390 version.
Copyright (C) 2000, 2001 Free Software Foundation, Inc.
Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc.
Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
This file is part of the GNU C Library.
Expand All @@ -19,6 +19,7 @@
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */

#include <limits.h>
#define ffsl __something_else
#include <string.h>

Expand Down Expand Up @@ -57,7 +58,7 @@ __ffs (x)
"3: tml %%r1,0x0001\n"
" jnz 4f\n"
" ahi %0,1\n"
"4:"
"4:"
: "=&d" (r) : "d" (x) : "cc", "1" );
return r+1;
}
Expand All @@ -67,4 +68,3 @@ weak_alias (__ffs, ffs)
#undef ffsl
weak_alias (__ffs, ffsl)
#endif

0 comments on commit f93fa7d

Please sign in to comment.