-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add MINSIGSTKSZ constant to linux sources #568
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@bors: r+ Thanks! |
📌 Commit 0cbdee7 has been approved by |
Add MINSIGSTKSZ constant to linux sources MINSIGSTKSZ is a minimum size of process stack allowed
💔 Test failed - status-appveyor |
Does not look related to my change |
@bors: retry
…On Tue, Apr 4, 2017 at 3:11 PM, Anatol Pomozov ***@***.***> wrote:
nning Install scripts
appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
Error downloading remote file: One or more errors occurred.
Inner Exception: The request was aborted: Could not create SSL/TLS secure channel.
Command exited with code 2
Does not look related to my change
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#568 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95AmFJXKyDHpyTQ9403qcu6Za81oxks5rsrHzgaJpZM4MzYnI>
.
|
Add MINSIGSTKSZ constant to linux sources MINSIGSTKSZ is a minimum size of process stack allowed
💔 Test failed - status-travis |
2 powerpc targets fail with following message
could you please help me to understand what does this error mean? |
Oh that just means that the value for the constant is different on powerpc than is what's currently defined. You'll want to update the constant's value on powerpc to fix the message. Right now it's just saying that the value a byte 2 differed, in Rust is was defined as 0x08 and in C it's 0x10 |
I can change it to match the system libc. But it is weird it uses a value different from Linux kernel uapi. The const defined as 2048 there. |
MINSIGSTKSZ is a minimum size of process stack allowed
@bors: r+ Ah looks like it got sorted out |
📌 Commit de75eb6 has been approved by |
Add MINSIGSTKSZ constant to linux sources MINSIGSTKSZ is a minimum size of process stack allowed
☀️ Test successful - status-appveyor, status-travis |
MINSIGSTKSZ is a minimum size of process stack allowed