[Vm-dev] [OpenSmalltalk/opensmalltalk-vm] FileAttributesPlugin 1.3.0 (#268)

Stuart Cassoff aa72 at bell.net
Sat Jun 16 14:43:02 UTC 2018


+ * WARNING: On 32 bit platforms time_t is only 32 bits long.

FWIW, not everywhere.
I didn't look over your patch in detail so I don't know if this makes a difference.


$ uname -msr && cat ct.c && cc ct.c && ./a.out 
OpenBSD 6.3 i386
#include <stdio.h>
int main (int argc, char *argv[]) {
        printf("%lu\n", sizeof (void *));
        printf("%lu\n", sizeof (time_t));
        return 0;
}
4
8


$  uname -msr && cc ct.c && ./a.out              
OpenBSD 6.3 amd64
8
8


Stu


> ---------- Original Message ----------
> From: akgrant43 <notifications at github.com>
> Date: June 16, 2018 at 9:27 AM
> 
> 
>  1.3.0: Change from Unix (UTC) timestamps to Squeak timestamps for file attributes.
> You can view, comment on, or merge this pull request online at:
> 
>   https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/268
> 
> -- Commit Summary --
> 
>   * FileAttributesPlugin v1.3.0
>   * FileAttributesPlugin: Interpreter proxy is responsible for conversion
> 
> -- File Changes --
> 
>     M platforms/unix/vm/sqUnixMain.c (44)
>     M src/plugins/FileAttributesPlugin/FileAttributesPlugin.c (523)
> 
> -- Patch Links --
> 
> https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/268.patch
> https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/268.diff
> 
> -- 
> You are receiving this because you are subscribed to this thread.
> Reply to this email directly or view it on GitHub:
> https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/268


More information about the Vm-dev mailing list