mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
Replaced uint64_t with off_t or int64_t.
Since off_t is int64_t with LFS, we cannot take advantage of extra capacity of uint64_t.
This commit is contained in:
parent
f25e67b017
commit
12988e5282
127 changed files with 457 additions and 490 deletions
|
@ -62,7 +62,7 @@ AbstractDiskWriter::~AbstractDiskWriter()
|
|||
closeFile();
|
||||
}
|
||||
|
||||
void AbstractDiskWriter::openFile(uint64_t totalLength)
|
||||
void AbstractDiskWriter::openFile(off_t totalLength)
|
||||
{
|
||||
try {
|
||||
openExistingFile(totalLength);
|
||||
|
@ -83,7 +83,7 @@ void AbstractDiskWriter::closeFile()
|
|||
}
|
||||
}
|
||||
|
||||
void AbstractDiskWriter::openExistingFile(uint64_t totalLength)
|
||||
void AbstractDiskWriter::openExistingFile(off_t totalLength)
|
||||
{
|
||||
int flags = O_BINARY;
|
||||
if(readOnly_) {
|
||||
|
@ -197,7 +197,7 @@ ssize_t AbstractDiskWriter::readData(unsigned char* data, size_t len, off_t offs
|
|||
return ret;
|
||||
}
|
||||
|
||||
void AbstractDiskWriter::truncate(uint64_t length)
|
||||
void AbstractDiskWriter::truncate(off_t length)
|
||||
{
|
||||
if(fd_ == -1) {
|
||||
throw DL_ABORT_EX("File not opened.");
|
||||
|
@ -223,7 +223,7 @@ void AbstractDiskWriter::truncate(uint64_t length)
|
|||
#endif
|
||||
}
|
||||
|
||||
void AbstractDiskWriter::allocate(off_t offset, uint64_t length)
|
||||
void AbstractDiskWriter::allocate(off_t offset, off_t length)
|
||||
{
|
||||
#ifdef HAVE_SOME_FALLOCATE
|
||||
if(fd_ == -1) {
|
||||
|
@ -272,7 +272,7 @@ void AbstractDiskWriter::allocate(off_t offset, uint64_t length)
|
|||
#endif // HAVE_SOME_FALLOCATE
|
||||
}
|
||||
|
||||
uint64_t AbstractDiskWriter::size()
|
||||
off_t AbstractDiskWriter::size()
|
||||
{
|
||||
return File(filename_).size();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue