Skip to content

Commit

Permalink
feat: add Windows support for VirtIO 9PFS
Browse files Browse the repository at this point in the history
  • Loading branch information
edubart committed Sep 7, 2024
1 parent 507e2b0 commit 92b327e
Show file tree
Hide file tree
Showing 5 changed files with 1,079 additions and 440 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Added shared filesystem support for Windows (VirtIO 9PFS)

### Changed
- Added a "--jobs" option to "uarch-riscv-tests.lua" test
Expand Down
2 changes: 1 addition & 1 deletion src/os-features.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
#define HAVE_SELECT
#endif

#if !defined(NO_POSIX_FILE) && !defined(__wasi__) && !defined(_WIN32)
#if !defined(NO_POSIX_FILE) && !defined(__wasi__)
#define HAVE_POSIX_FS
#endif

Expand Down
1 change: 1 addition & 0 deletions src/pma.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#ifndef PMA_H
#define PMA_H

#include <algorithm>
#include <cassert>
#include <cstdint>
#include <stdexcept>
Expand Down
Loading

0 comments on commit 92b327e

Please sign in to comment.