Page 5 of 8

Re: Announcements

Posted: Fri Aug 17, 2018 6:19 pm
by aron
A new batch of packages were uploaded. It is recommended to install the xsiipc package. Use the following command to upgrade:

Code: Select all

# pkman -Syu xsiipc

Re: Announcements

Posted: Fri Aug 24, 2018 3:30 pm
by aron
A new set of packages was uploaded. Upgrade as usual:

Code: Select all

# pkman -Syu
The upgraded xsiipc (version 0.1-391) will support shared memory and semaphore set (message queue is supported since 0.1-390).

IPC features are accessible via the System V API:
  • message queue: msgget(), msgctl(), msgsnd(), msgrcv()
  • shared memory: shmget(), shmctl(), shmat(), shmdt()
  • semaphore set: semget(), semctl(), semop()

Re: Announcements

Posted: Fri Aug 31, 2018 11:08 am
by aron
Introducing the small-PID mechanism: this mechanism hides the actual task handles, and provides small integers from the range 1 to 32767 (inclusive). Due to this change, the system shall be upgraded carefully when upgrading sysvc below 0.1-395 to 0.1-395 or above:

Code: Select all

# mv /bin/sh /bin/sh.old && ln -s /run/bin/sh /bin/sh
# PATH=/run/bin:/run/usr/bin:$PATH
# pkman -Syu
# reboot
...
# rm /bin/sh && mv /bin/sh.old /bin/sh

Re: Announcements

Posted: Tue Sep 04, 2018 12:55 pm
by aron
Bug fixes are available in various packages:
  • vfs-0.1-399 (includes a memory leak fix)
  • tcpip-0.1-399 (prepare to handle prot_unix, the UNIX domain sockets implementation)
Upgrade the system as usual:

Code: Select all

# pkman -Syu

Re: Announcements

Posted: Fri Sep 07, 2018 1:51 pm
by aron
  • Several bugs were fixed in bufgroup-0.1-402, vfs-0.1-402 and threos-kernel-0.1-402 (i.e. memory leaks, false statistics, etc).
  • Added support of UNIX domain sockets by prot_unix. Currently named sockets are not handled correctly, but autobind and abstract socket namespace works. Socket pairs can be also created with socketpair(). Note: SOCK_DGRAM is not supported yet.
  • Other packages also contains minor fixes. E.g. links version 2.16-3 installs the manual pages into the correct directory.
Upgrade the system normally with additional installation of prot_unix:

Code: Select all

# pkman -Syu prot_unix

Re: Announcements

Posted: Mon Sep 10, 2018 6:51 am
by aron
Additional bug fixes, and upgraded packages (file, libarchive, curl).
Upgrade the system as usual:

Code: Select all

# pkman -Syu

Re: Announcements

Posted: Mon Sep 10, 2018 1:58 pm
by aron
prot_unix supports AF_UNIX,SOCK_DGRAM since version 0.2.7-1.
Upgrade the system as usual:

Code: Select all

# pkman -Syu

Re: Announcements

Posted: Wed Sep 12, 2018 2:26 pm
by aron
Support of the POSIX-like semaphores (see sem_open(3)) appeared in libc-0.2.224-1.
Upgrade the system as usual:

Code: Select all

# pkman -Syu

Re: Announcements

Posted: Thu Sep 13, 2018 8:20 am
by aron
Added new package: gawk-4.2.1-1
Fixed some bugs in loadersvc-0.1-406
Upgrade the system as usual:

Code: Select all

# pkman -Syu

Re: Announcements

Posted: Fri Sep 14, 2018 2:13 pm
by aron
Fixing EOF-handling issues in terminal-0.1-407 and in ns16550-0.1-407.
Upgrade the system as usual.