statfix.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* vi: set sw=4 ts=4: */
  2. /* Convert from the kernel's version of struct stat to libc's version
  3. *
  4. * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  5. * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
  6. * Written by Erik Andersen <andersen@uclibc.org>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU Library General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  16. * for more details.
  17. *
  18. * You should have received a copy of the GNU Library General Public License
  19. * along with this program; if not, write to the Free Software Foundation,
  20. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. /* Pull in whatever this particular arch's kernel thinks the kernel version of
  23. * struct stat should look like. It turns out that each arch has a different
  24. * opinion on the subject. Then pull in libc's version of struct stat... */
  25. #include "statfix.h"
  26. /* Convert from the kernel's version of struct stat to libc's version */
  27. void statfix(struct libc_stat *libcstat, struct kernel_stat *kstat)
  28. {
  29. libcstat->st_dev = kstat->st_dev;
  30. libcstat->st_ino = kstat->st_ino;
  31. libcstat->st_mode = kstat->st_mode;
  32. libcstat->st_nlink = kstat->st_nlink;
  33. libcstat->st_uid = kstat->st_uid;
  34. libcstat->st_gid = kstat->st_gid;
  35. libcstat->st_rdev = kstat->st_rdev;
  36. libcstat->st_size = kstat->st_size;
  37. libcstat->st_blksize = kstat->st_blksize;
  38. libcstat->st_blocks = kstat->st_blocks;
  39. libcstat->st_atime = kstat->st_atime;
  40. libcstat->st_mtime = kstat->st_mtime;
  41. libcstat->st_ctime = kstat->st_ctime;
  42. }