Welcome to mirror list, hosted at ThFree Co, Russian Federation.

semihost-sys_stat_common.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b38eb0863dea8a2bf5421f20a46a1193db21fdfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Copyright (C) 2020 Embecosm Limited
 * SPDX-License-Identifier: BSD-2-Clause
 */
#include <machine/syscall.h>
#include "semihost_syscall.h"
#include <sys/stat.h>
#include "semihost_fdtable.h"

/* Used by _fstat and _stat to fill in some common details.  */

int
__stat_common (int file, struct stat *st)
{
  int flen;
  struct fdentry *fd =__get_fdentry (file);
  long data_block[1];

  if (fd == NULL)
    return -1;

  data_block[0] = fd->handle;

  /* Assume character device and default block size of 4096.  */
  st->st_mode |= S_IFCHR;
  st->st_blksize = 4096;

  /* Attempt to get length of file.  */
  flen = syscall_errno (SEMIHOST_flen, data_block);
  if (flen == -1)
    return -1;

  st->st_size = flen;

  return 0;
}