mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
Fix typos
This commit is contained in:
@ -415,7 +415,7 @@ static IOJob_t* AIO_ReadPool_findNextWaitingOffsetCompletedJob_locked(ReadPoolCt
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* AIO_ReadPool_numReadsInFlight:
|
/* AIO_ReadPool_numReadsInFlight:
|
||||||
* Returns the number of IO read jobs currrently in flight. */
|
* Returns the number of IO read jobs currently in flight. */
|
||||||
static size_t AIO_ReadPool_numReadsInFlight(ReadPoolCtx_t* ctx) {
|
static size_t AIO_ReadPool_numReadsInFlight(ReadPoolCtx_t* ctx) {
|
||||||
const size_t jobsHeld = (ctx->currentJobHeld==NULL ? 0 : 1);
|
const size_t jobsHeld = (ctx->currentJobHeld==NULL ? 0 : 1);
|
||||||
return ctx->base.totalIoJobs - (ctx->base.availableJobsCount + ctx->completedJobsCount + jobsHeld);
|
return ctx->base.totalIoJobs - (ctx->base.availableJobsCount + ctx->completedJobsCount + jobsHeld);
|
||||||
|
@ -151,7 +151,7 @@ void AIO_ReadPool_free(ReadPoolCtx_t* ctx);
|
|||||||
void AIO_ReadPool_consumeBytes(ReadPoolCtx_t *ctx, size_t n);
|
void AIO_ReadPool_consumeBytes(ReadPoolCtx_t *ctx, size_t n);
|
||||||
|
|
||||||
/* AIO_ReadPool_fillBuffer:
|
/* AIO_ReadPool_fillBuffer:
|
||||||
* Makes sure buffer has at least n bytes loaded (as long as n is not bigger than the initalized bufferSize).
|
* Makes sure buffer has at least n bytes loaded (as long as n is not bigger than the initialized bufferSize).
|
||||||
* Returns if srcBuffer has at least n bytes loaded or if we've reached the end of the file.
|
* Returns if srcBuffer has at least n bytes loaded or if we've reached the end of the file.
|
||||||
* Return value is the number of bytes added to the buffer.
|
* Return value is the number of bytes added to the buffer.
|
||||||
* Note that srcBuffer might have up to 2 times bufferSize bytes. */
|
* Note that srcBuffer might have up to 2 times bufferSize bytes. */
|
||||||
|
@ -67,9 +67,9 @@ They are generally used by the helper scripts in `bin/` to coordinate everything
|
|||||||
|
|
||||||
### Basic test case
|
### Basic test case
|
||||||
|
|
||||||
When executing your `$TEST` executable, by default the exit code is expected to be `0`. However, you can provide an alterate expected exit code in a `$TEST.exit` file.
|
When executing your `$TEST` executable, by default the exit code is expected to be `0`. However, you can provide an alternate expected exit code in a `$TEST.exit` file.
|
||||||
|
|
||||||
When executing your `$TEST` exectuable, by default the expected stderr and stdout are empty. However, you can override the default by providing one of three files:
|
When executing your `$TEST` executable, by default the expected stderr and stdout are empty. However, you can override the default by providing one of three files:
|
||||||
|
|
||||||
* `$TEST.{stdout,stderr}.exact`
|
* `$TEST.{stdout,stderr}.exact`
|
||||||
* `$TEST.{stdout,stderr}.glob`
|
* `$TEST.{stdout,stderr}.glob`
|
||||||
|
Reference in New Issue
Block a user