1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
2000-09-13  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/getdents.c: Pretty print.
This commit is contained in:
Ulrich Drepper
2000-09-13 07:30:53 +00:00
parent 71e1dcd132
commit da0fdef0e4
2 changed files with 15 additions and 10 deletions

View File

@ -1,3 +1,7 @@
2000-09-13 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/getdents.c: Pretty print.
2000-09-01 Jes Sorensen <jes@linuxcare.com>
* sysdeps/unix/sysv/linux/ia64/syscalls.list: Add

View File

@ -21,6 +21,7 @@
#include <errno.h>
#include <dirent.h>
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <sys/param.h>
@ -66,7 +67,7 @@ struct kernel_dirent
struct kernel_dirent64
{
u_int64_t d_ino;
uint64_t d_ino;
int64_t d_off;
unsigned short int d_reclen;
unsigned char d_type;
@ -146,7 +147,7 @@ __GETDENTS (int fd, char *buf, size_t nbytes)
size_t old_reclen = kdp->d_reclen;
size_t new_reclen = ((old_reclen - size_diff + alignment - 1)
& ~(alignment - 1));
u_int64_t d_ino = kdp->d_ino;
uint64_t d_ino = kdp->d_ino;
int64_t d_off = kdp->d_off;
unsigned char d_type = kdp->d_type;