added st source

This commit is contained in:
2023-02-25 22:33:44 +01:00
parent 14b4224f9f
commit b4acc30aa0
78 changed files with 14879 additions and 0 deletions

31
dwm/.st/patch/sync.c Normal file
View File

@@ -0,0 +1,31 @@
#include <time.h>
struct timespec sutv;
static void
tsync_begin()
{
clock_gettime(CLOCK_MONOTONIC, &sutv);
su = 1;
}
static void
tsync_end()
{
su = 0;
}
int
tinsync(uint timeout)
{
struct timespec now;
if (su && !clock_gettime(CLOCK_MONOTONIC, &now)
&& TIMEDIFF(now, sutv) >= timeout)
su = 0;
return su;
}
int
ttyread_pending()
{
return twrite_aborted;
}