* gennltvals.sh: Search sys/_default_fcntl.h, in addition to
[deliverable/binutils-gdb.git] / sim / common / sim-io.c
index c02856e40995872bb7942e70523bad01a5875dc0..250f37d6ef16519f979debdfb03fbe4c74afd770 100644 (file)
@@ -1,6 +1,6 @@
 /* The common simulator framework for GDB, the GNU Debugger.
 
-   Copyright 2002, 2007 Free Software Foundation, Inc.
+   Copyright 2002, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 
    Contributed by Andrew Cagney and Red Hat.
 
@@ -387,3 +387,15 @@ sim_io_poll_read (SIM_DESC sd,
   return sim_io_read (sd, sim_io_fd, buf, sizeof_buf);
 #endif
 }
+
+int
+sim_io_stat (SIM_DESC sd, const char *path, struct stat *buf)
+{
+  return STATE_CALLBACK (sd)->stat (STATE_CALLBACK (sd), path, buf);
+}
+
+int
+sim_io_fstat (SIM_DESC sd, int fd, struct stat *buf)
+{
+  return STATE_CALLBACK (sd)->fstat (STATE_CALLBACK (sd), fd, buf);
+}
This page took 0.0235 seconds and 4 git commands to generate.