Skip to content

Commit

Permalink
Implement extended stat information (plus misc cleanup).
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 authored and simonmichal committed Oct 16, 2019
1 parent 487db7b commit fb009bf
Show file tree
Hide file tree
Showing 12 changed files with 316 additions and 662 deletions.
3 changes: 3 additions & 0 deletions src/XProtocol/XProtocol.cc
Expand Up @@ -55,6 +55,9 @@
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>

#include "XProtocol/XProtocol.hh"

Expand Down
5 changes: 4 additions & 1 deletion src/XProtocol/XProtocol.hh
Expand Up @@ -960,6 +960,8 @@ struct ALIGN_CHECK {char chkszreq[25-sizeof(ClientRequest)];
#ifndef ENOATTR
#define ENOATTR ENODATA
#endif

struct stat;

class XProtocol
{
Expand Down Expand Up @@ -1035,5 +1037,6 @@ static int toErrno( int xerr )
static const char *errName(kXR_int32 errCode);

static const char *reqName(kXR_unt16 reqCode);
};

}; // XProtocol
#endif

0 comments on commit fb009bf

Please sign in to comment.