This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: update ChakraCore to chakra-core/ChakraCore@09034518ef
[MERGE #4492 @obastemur] Fixes an issue with flaky 262 test Merge pull request #4492 from obastemur:262_stuff fixes #4405 Reviewed-By: chakrabot <[email protected]>
- Loading branch information
Showing
10 changed files
with
706 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// | ||
|
||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
/*++ | ||
Module Name: | ||
semaphore.hpp | ||
Abstract: | ||
Semaphore object structure definition. | ||
--*/ | ||
|
||
#ifndef _PAL_SEMAPHORE_H_ | ||
#define _PAL_SEMAPHORE_H_ | ||
|
||
#include "corunix.hpp" | ||
|
||
namespace CorUnix | ||
{ | ||
extern CObjectType otSemaphore; | ||
|
||
typedef struct | ||
{ | ||
LONG lMaximumCount; | ||
} SemaphoreImmutableData; | ||
|
||
PAL_ERROR | ||
InternalCreateSemaphore( | ||
CPalThread *pThread, | ||
LPSECURITY_ATTRIBUTES lpSemaphoreAttributes, | ||
LONG lInitialCount, | ||
LONG lMaximumCount, | ||
LPCWSTR lpName, | ||
HANDLE *phSemaphore | ||
); | ||
|
||
PAL_ERROR | ||
InternalReleaseSemaphore( | ||
CPalThread *pThread, | ||
HANDLE hSemaphore, | ||
LONG lReleaseCount, | ||
LPLONG lpPreviousCount | ||
); | ||
|
||
} | ||
|
||
#endif //_PAL_SEMAPHORE_H_ |
Oops, something went wrong.