|
Last change
on this file was
88,
checked in by rosiere, 17 years ago
|
|
Almost complete design
with Test and test platform
|
-
Property svn:keywords set to
Id
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | #include "../include/Sim2OS.h" |
|---|
| 2 | |
|---|
| 3 | namespace environment { |
|---|
| 4 | namespace sim2os { |
|---|
| 5 | |
|---|
| 6 | void * Sim2OS::service_read (void) |
|---|
| 7 | { |
|---|
| 8 | if (have_all_arguments(3) == false) |
|---|
| 9 | { |
|---|
| 10 | std::cerr << "<" << name << "> Usage : ssize_t read(int fd, void *buf, size_t count);" << std::endl; |
|---|
| 11 | return NULL; |
|---|
| 12 | } |
|---|
| 13 | |
|---|
| 14 | int fd = static_cast<int>(reinterpret_cast<int64_t>(arguments[1])); |
|---|
| 15 | void * buf = (void *) convert_address(arguments[2]); |
|---|
| 16 | ssize_t count = (ssize_t) arguments[3]; |
|---|
| 17 | void * result = (void *) read(fd,buf,count); |
|---|
| 18 | |
|---|
| 19 | std::cout << "\n\t***** service : read *****" << std::endl; |
|---|
| 20 | std::cout << "\tfd : " << (unsigned int) fd << std::endl; |
|---|
| 21 | std::cout << "\tbuf : " << std::hex << static_cast<int32_t>(reinterpret_cast<int64_t>(buf)) << std::endl; |
|---|
| 22 | //std::cout << "\tbuf : " << std::dec << (char *) buf << std::endl; |
|---|
| 23 | std::cout << "\tcount : " << std::dec << (unsigned int) count << std::endl; |
|---|
| 24 | std::cout << "\tresult : " << static_cast<int32_t>(reinterpret_cast<int64_t>(result)) << std::endl; |
|---|
| 25 | std::cout << "\terrno : " << (unsigned int) error << std::endl; |
|---|
| 26 | |
|---|
| 27 | error = errno; |
|---|
| 28 | |
|---|
| 29 | return result; |
|---|
| 30 | } |
|---|
| 31 | |
|---|
| 32 | }; |
|---|
| 33 | }; |
|---|
Note: See
TracBrowser
for help on using the repository browser.