This commit is contained in:
Parth Aggarwal 2020-07-21 17:50:46 -04:00
Родитель 9b5a90cdf5
Коммит e4f997ee99
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -604,7 +604,6 @@ TEST_FUNCTION(large_simultaneous_reads_succeed)
{
destinations[i] = (unsigned char*)malloc(block_size);
ASSERT_IS_NOT_NULL(destinations[i]);
(void)memset(destinations[i], 'a' + i, block_size);
contexts[i].pre_callback_value = num_blocks + 1;
(void)interlocked_exchange(&contexts[i].value, contexts[i].pre_callback_value);
contexts[i].post_callback_value = i;

Просмотреть файл

@ -13,7 +13,7 @@ extern "C" {
#include <stdbool.h>
#endif
void delete_file(const char* filename);
int delete_file(const char* filename);
bool check_file_exists(const char* filename);
#ifdef __cplusplus