File:  [DVB] / dietlibc / aarch64 / getdents.S
Revision 1.1: download - view: text, annotated - select for diffs
Mon Jun 6 12:02:03 2016 UTC (7 years, 11 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
  aarch64 port (Christian Seiler)

#include "aarch64-features.h"

/* getdents() is not supported on aarch64, and we don't want to emulate it
 * with the totally different structure layout. getdents64() is available
 * and our readdir{,_r}() implementation will use getdents64 on aarch64. */
FUNC_START	getdents
	mov	x0, #-38 /* ENOSYS */
	b	__unified_syscall
FUNC_END	getdents

LinuxTV legacy CVS <linuxtv.org/cvs>