diff options
author | Brad Rydzewski <brad.rydzewski@gmail.com> | 2020-12-26 09:04:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-26 23:04:03 +0900 |
commit | e30206cd316f3696e30fc3b15d68912ef35f9247 (patch) | |
tree | d8f3d66145c78a45a659aa0b61835e95af34b697 | |
parent | Fix ci (diff) | |
download | golite-e30206cd316f3696e30fc3b15d68912ef35f9247.tar.gz golite-e30206cd316f3696e30fc3b15d68912ef35f9247.tar.xz |
clarify usleep license (#893)
-rw-r--r-- | sqlite3_usleep_windows.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sqlite3_usleep_windows.go b/sqlite3_usleep_windows.go index 1971a48..b6739bf 100644 --- a/sqlite3_usleep_windows.go +++ b/sqlite3_usleep_windows.go @@ -15,7 +15,9 @@ package sqlite3 // This code should improve performance on windows because // without the presence of usleep SQLite waits 1 second. // -// Source: https://stackoverflow.com/questions/5801813/c-usleep-is-obsolete-workarounds-for-windows-mingw?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa +// Source: https://github.com/php/php-src/blob/PHP-5.0/win32/time.c +// License: https://github.com/php/php-src/blob/PHP-5.0/LICENSE +// Details: https://stackoverflow.com/questions/5801813/c-usleep-is-obsolete-workarounds-for-windows-mingw?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa /* #include <windows.h> |