diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-01 16:12:16 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-01 16:12:16 -0500 |
commit | c227f0995e1722a1abccc28cadf0664266bd8043 (patch) | |
tree | 39e92c2f818e3e8144978740b914731613af0e40 /m68k-semi.c | |
parent | 99a0949b720a0936da2052cb9a46db04ffc6db29 (diff) |
Revert "Get rid of _t suffix"
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b720a0936da2052cb9a46db04ffc6db29.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'm68k-semi.c')
-rw-r--r-- | m68k-semi.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/m68k-semi.c b/m68k-semi.c index ef2729f4a8..48e3bd38be 100644 --- a/m68k-semi.c +++ b/m68k-semi.c @@ -53,13 +53,13 @@ #define HOSTED_ISATTY 12 #define HOSTED_SYSTEM 13 -typedef uint32_t a_gdb_mode; -typedef uint32_t a_gdb_time; +typedef uint32_t gdb_mode_t; +typedef uint32_t gdb_time_t; struct m68k_gdb_stat { uint32_t gdb_st_dev; /* device */ uint32_t gdb_st_ino; /* inode */ - a_gdb_mode gdb_st_mode; /* protection */ + gdb_mode_t gdb_st_mode; /* protection */ uint32_t gdb_st_nlink; /* number of hard links */ uint32_t gdb_st_uid; /* user ID of owner */ uint32_t gdb_st_gid; /* group ID of owner */ @@ -67,13 +67,13 @@ struct m68k_gdb_stat { uint64_t gdb_st_size; /* total size, in bytes */ uint64_t gdb_st_blksize; /* blocksize for filesystem I/O */ uint64_t gdb_st_blocks; /* number of blocks allocated */ - a_gdb_time gdb_st_atime; /* time of last access */ - a_gdb_time gdb_st_mtime; /* time of last modification */ - a_gdb_time gdb_st_ctime; /* time of last change */ + gdb_time_t gdb_st_atime; /* time of last access */ + gdb_time_t gdb_st_mtime; /* time of last modification */ + gdb_time_t gdb_st_ctime; /* time of last change */ } __attribute__((packed)); struct gdb_timeval { - a_gdb_time tv_sec; /* second */ + gdb_time_t tv_sec; /* second */ uint64_t tv_usec; /* microsecond */ } __attribute__((packed)); |