You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ The following tools are used to help build, test, debug, and document this libra
10
10
-[Doxygen](http://www.stack.nl/~dimitri/doxygen/)
11
11
- Development environments:
12
12
- Windows: [MSYS2](http://msys2.github.io/)
13
-
-Mac OS X: [Homebrew](http://brew.sh/)
13
+
-macOS: [Homebrew](http://brew.sh/)
14
14
- Memory leak checkers:
15
15
- Windows: Install Dr. Memory and run `drmemory -leaks_only ./run_test.exe`
16
16
- Linux: Install Valgrind and run `valgrind ./run_test`
17
-
-Mac OS X: Run `MallocStackLogging=1 ./run_test -p`, wait for the tests to finish, press Ctrl+Z, run `leaks run_test`, then finally run `fg` to go back to the stopped test process and end it.
17
+
-macOS: Run `MallocStackLogging=1 ./run_test -p`, wait for the tests to finish, press Ctrl+Z, run `leaks run_test`, then finally run `fg` to go back to the stopped test process and end it.
18
18
19
19
## Underlying API documentation
20
20
@@ -49,7 +49,7 @@ This section attempts to organize the documentation and information about the un
Copy file name to clipboardexpand all lines: PLATFORM_NOTES.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -11,12 +11,12 @@ On Linux, a udev rule is typically needed in order to grant permissions for non-
11
11
12
12
## Multiple handles to the same generic interface
13
13
14
-
On Linux, you can have multiple simultaneous handles open to the same generic interface of a device. On Windows and Mac OS X, this is not possible, and you will get an error with the code `LIBUSBP_ERROR_ACCESS_DENIED` when trying to open the second handle with `libusbp_generic_handle_open`.
14
+
On Linux, you can have multiple simultaneous handles open to the same generic interface of a device. On Windows and macOS, this is not possible, and you will get an error with the code `LIBUSBP_ERROR_ACCESS_DENIED` when trying to open the second handle with `libusbp_generic_handle_open`.
15
15
16
16
17
17
## Timeouts for interrupt IN endpoints
18
18
19
-
On Mac OS X, you cannot specify a timeout for an interrupt IN endpoint. Doing so will result in the following error when you try to read from the endpoint:
19
+
On macOS, you cannot specify a timeout for an interrupt IN endpoint. Doing so will result in the following error when you try to read from the endpoint:
20
20
21
21
Failed to read from pipe. (iokit/common) invalid argument. Error code 0xe00002c2.
Copy file name to clipboardexpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The library runs on:
26
26
27
27
* Microsoft Windows (Windows Vista and later)
28
28
* Linux
29
-
*Mac OS X (10.11 and later)
29
+
*macOS (10.11 and later)
30
30
31
31
32
32
## Supported USB devices and interfaces
@@ -91,9 +91,9 @@ Download the source code of this library and navigate to the top-level directory
91
91
sudo make install
92
92
93
93
94
-
## Building from source on Mac OS X
94
+
## Building from source on macOS
95
95
96
-
First, install [Homebrew](http://brew.sh/), a package manager for Mac OS X. Then use Homebrew to install CMake by running the following command in a Terminal:
96
+
First, install [Homebrew](http://brew.sh/), a package manager for macOS. Then use Homebrew to install CMake by running the following command in a Terminal:
0 commit comments