Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
solariun committed Jan 14, 2021
1 parent b036cb5 commit b3b8d5b
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
4 changes: 2 additions & 2 deletions demo/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ bool DMLayer_SharedLock(DMLayer* pDMLayer)

VERIFY (CorePartition_SharedLock(pLock), "Failed acquire shared lock", false);

YYTRACE (" Lock: [%zu]\n", pLock->bSharedLock);
YYTRACE (" Lock: [%zu]\n", pLock->nSharedLockCount);

return true;
}
Expand Down Expand Up @@ -177,7 +177,7 @@ bool DMLayer_SharedUnlock(DMLayer* pDMLayer)
VERIFY ((pLock = (CpxSmartLock*) DMLayer_GetUserData(pDMLayer)) != NULL, "No Lock defined.", false);

YYTRACE ("%s: ", __FUNCTION__);
YYTRACE (" Lock: [%u]\n", pLock->bSharedLock);
YYTRACE (" Lock: [%zu]\n", pLock->nSharedLockCount);

VERIFY (CorePartition_SharedUnlock(pLock), "Failed to unlock", false);

Expand Down
Binary file modified xcode/dmlayer/.DS_Store
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
uuid = "688C7924-CAAC-4A5F-947E-197A8A79DC2D"
type = "1"
version = "2.0">
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "B23736A2-903D-419C-92EE-17457A3625EC"
shouldBeEnabled = "No"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "../../CorePartition/CorePartition.c"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "349"
endingLineNumber = "349"
landmarkName = "CorePartition_Lock(pLock)"
landmarkType = "9">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>

0 comments on commit b3b8d5b

Please sign in to comment.